Skip to content

Commit

Permalink
Fix linting issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
hgaiser authored May 1, 2024
1 parent 1915c92 commit ee2b5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/linux/cuda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ namespace cuda {

// Set privateData to allow NvFBC on consumer NVIDIA GPUs.
// Based on https://github.com/keylase/nvidia-patch/blob/3193b4b1cea91527bf09ea9b8db5aade6a3f3c0a/win/nvfbcwrp/nvfbcwrp_main.cpp#L23-L25 .
const unsigned int MAGIC_PRIVATE_DATA[4] = {0xAEF57AC5, 0x401D1A39, 0x1B856BBE, 0x9ED0CEBA};
const unsigned int MAGIC_PRIVATE_DATA[4] = { 0xAEF57AC5, 0x401D1A39, 0x1B856BBE, 0x9ED0CEBA };
params.privateData = MAGIC_PRIVATE_DATA;

Check warning on line 620 in src/platform/linux/cuda.cpp

View check run for this annotation

Codecov / codecov/patch

src/platform/linux/cuda.cpp#L619-L620

Added lines #L619 - L620 were not covered by tests
params.privateDataSize = sizeof(MAGIC_PRIVATE_DATA);

Expand Down

0 comments on commit ee2b5d9

Please sign in to comment.