From 0a2806972f51109024a114a1c8ad5396e9d535c7 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 17 Jul 2023 22:27:14 +0200 Subject: Experimental wayland support, test 1 --- include/capture/kms_cuda.h | 18 ++++++++++++++++++ include/capture/kms_vaapi.h | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 include/capture/kms_cuda.h (limited to 'include/capture') diff --git a/include/capture/kms_cuda.h b/include/capture/kms_cuda.h new file mode 100644 index 0000000..e34802e --- /dev/null +++ b/include/capture/kms_cuda.h @@ -0,0 +1,18 @@ +#ifndef GSR_CAPTURE_KMS_CUDA_H +#define GSR_CAPTURE_KMS_CUDA_H + +#include "../vec2.h" +#include "../utils.h" +#include "capture.h" + +typedef struct _XDisplay Display; + +typedef struct { + const char *display_to_capture; /* if this is "screen", then the entire x11 screen is captured (all displays). A copy is made of this */ + gsr_gpu_info gpu_inf; + const char *card_path; /* reference */ +} gsr_capture_kms_cuda_params; + +gsr_capture* gsr_capture_kms_cuda_create(const gsr_capture_kms_cuda_params *params); + +#endif /* GSR_CAPTURE_KMS_CUDA_H */ diff --git a/include/capture/kms_vaapi.h b/include/capture/kms_vaapi.h index 741d74b..e7bd652 100644 --- a/include/capture/kms_vaapi.h +++ b/include/capture/kms_vaapi.h @@ -4,7 +4,6 @@ #include "../vec2.h" #include "../utils.h" #include "capture.h" -#include typedef struct _XDisplay Display; @@ -12,6 +11,7 @@ typedef struct { const char *display_to_capture; /* if this is "screen", then the entire x11 screen is captured (all displays). A copy is made of this */ gsr_gpu_info gpu_inf; const char *card_path; /* reference */ + bool wayland; } gsr_capture_kms_vaapi_params; gsr_capture* gsr_capture_kms_vaapi_create(const gsr_capture_kms_vaapi_params *params); -- cgit v1.2.3