2022-10-13 23:16:31 +00:00
|
|
|
#ifndef GSR_CAPTURE_NVFBC_H
|
|
|
|
#define GSR_CAPTURE_NVFBC_H
|
|
|
|
|
|
|
|
#include "capture.h"
|
2023-07-21 16:56:34 +00:00
|
|
|
#include "../egl.h"
|
2022-10-13 23:16:31 +00:00
|
|
|
#include "../vec2.h"
|
|
|
|
|
2022-10-16 00:08:40 +00:00
|
|
|
typedef struct _XDisplay Display;
|
|
|
|
|
2022-10-13 23:16:31 +00:00
|
|
|
typedef struct {
|
2022-10-16 00:08:40 +00:00
|
|
|
Display *dpy;
|
2023-07-21 16:56:34 +00:00
|
|
|
gsr_egl *egl;
|
2022-10-16 00:08:40 +00:00
|
|
|
const char *display_to_capture; /* if this is "screen", then the entire x11 screen is captured (all displays). A copy is made of this */
|
2022-10-13 23:16:31 +00:00
|
|
|
int fps;
|
|
|
|
vec2i pos;
|
|
|
|
vec2i size;
|
2023-03-17 16:17:14 +00:00
|
|
|
bool direct_capture;
|
|
|
|
bool overclock;
|
2022-10-13 23:16:31 +00:00
|
|
|
} gsr_capture_nvfbc_params;
|
|
|
|
|
|
|
|
gsr_capture* gsr_capture_nvfbc_create(const gsr_capture_nvfbc_params *params);
|
|
|
|
|
|
|
|
#endif /* GSR_CAPTURE_NVFBC_H */
|