diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-10-21 22:46:30 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-10-21 22:46:33 +0200 |
commit | 9710f8a2d4a33fce09dd54a859a543e2b9d58bd8 (patch) | |
tree | 2cf2fa0c436a259236e0f595e5b83cb683977b9d /include/capture | |
parent | ee5d1d7a279dd2fa54babc4d67350352940b4391 (diff) |
Attempt to fix amd/intel driver bug vram leak, force cfr when livestreaming, replace std::filesystem with posix
create replay directory automatically, recursively
Diffstat (limited to 'include/capture')
-rw-r--r-- | include/capture/kms_cuda.h | 2 | ||||
-rw-r--r-- | include/capture/kms_vaapi.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/capture/kms_cuda.h b/include/capture/kms_cuda.h index b631226..c2b2ad8 100644 --- a/include/capture/kms_cuda.h +++ b/include/capture/kms_cuda.h @@ -9,7 +9,7 @@ typedef struct _XDisplay Display; typedef struct { gsr_egl *egl; - const char *display_to_capture; /* if this is "screen", then the entire x11 screen is captured (all displays). A copy is made of this */ + const char *display_to_capture; /* if this is "screen", then the first monitor is captured. A copy is made of this */ gsr_gpu_info gpu_inf; const char *card_path; /* reference */ } gsr_capture_kms_cuda_params; diff --git a/include/capture/kms_vaapi.h b/include/capture/kms_vaapi.h index 77b292a..26cda2c 100644 --- a/include/capture/kms_vaapi.h +++ b/include/capture/kms_vaapi.h @@ -9,7 +9,7 @@ typedef struct _XDisplay Display; typedef struct { gsr_egl *egl; - const char *display_to_capture; /* if this is "screen", then the entire x11 screen is captured (all displays). A copy is made of this */ + const char *display_to_capture; /* if this is "screen", then the first monitor is captured. A copy is made of this */ gsr_gpu_info gpu_inf; const char *card_path; /* reference */ bool wayland; |