Files
gpu-screen-recorder/include/capture/xcomposite_cuda.h
dec05eba 5e05bbbbcb Refactor xcomposite
Move common code between cuda/vaapi implementations
into xcomposite file.
This also fixes limited/full range colors on nvidia.
2024-03-09 15:36:45 +01:00

15 lines
382 B
C

#ifndef GSR_CAPTURE_XCOMPOSITE_CUDA_H
#define GSR_CAPTURE_XCOMPOSITE_CUDA_H
#include "capture.h"
#include "xcomposite.h"
typedef struct {
gsr_capture_xcomposite_params base;
bool overclock;
} gsr_capture_xcomposite_cuda_params;
gsr_capture* gsr_capture_xcomposite_cuda_create(const gsr_capture_xcomposite_cuda_params *params);
#endif /* GSR_CAPTURE_XCOMPOSITE_CUDA_H */