mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 17:17:16 +09:00
With this instead of kms_cuda/kms_vaapi/kms_software and xcomposite_cuda/xcomposite_vaapi/xcomposite_software there is now only kms and xcomposite.
17 lines
357 B
C
17 lines
357 B
C
#ifndef GSR_ENCODER_VIDEO_CUDA_H
|
|
#define GSR_ENCODER_VIDEO_CUDA_H
|
|
|
|
#include "video.h"
|
|
|
|
typedef struct gsr_egl gsr_egl;
|
|
|
|
typedef struct {
|
|
gsr_egl *egl;
|
|
bool overclock;
|
|
bool hdr;
|
|
} gsr_video_encoder_cuda_params;
|
|
|
|
gsr_video_encoder* gsr_video_encoder_cuda_create(const gsr_video_encoder_cuda_params *params);
|
|
|
|
#endif /* GSR_ENCODER_VIDEO_CUDA_H */
|