mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 17:17:16 +09:00
Move common code between cuda/vaapi implementations into xcomposite file. This also fixes limited/full range colors on nvidia.
15 lines
382 B
C
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 */
|