diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-09-26 01:26:45 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-09-26 01:26:45 +0200 |
commit | 4fead183fe7a0dd2b8591afcf1b82fc68617e79a (patch) | |
tree | 0a494c8730381354b1dfed677d2eafa46acbb9f8 /include/NvFBCLibrary.hpp | |
parent | 0059724fdc4a8eba89fdfa4d65ad72e3f8c75ff4 (diff) |
Load cuda at runtime. Include cuda header files inside the project
Diffstat (limited to 'include/NvFBCLibrary.hpp')
-rw-r--r-- | include/NvFBCLibrary.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/NvFBCLibrary.hpp b/include/NvFBCLibrary.hpp index 6d115a4..95f6ae4 100644 --- a/include/NvFBCLibrary.hpp +++ b/include/NvFBCLibrary.hpp @@ -1,7 +1,6 @@ #pragma once #include "NvFBC.h" -#include <cuda.h> #include <dlfcn.h> #include <string.h> @@ -174,7 +173,7 @@ public: return false; } - bool capture(/*out*/ CUdeviceptr *cu_device_ptr, uint32_t *byte_size) { + bool capture(/*out*/ void *cu_device_ptr, uint32_t *byte_size) { if(!library || !fbc_handle_created || !cu_device_ptr || !byte_size) return false; |