diff options
Diffstat (limited to 'include/capture/xcomposite.h')
-rw-r--r-- | include/capture/xcomposite.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/capture/xcomposite.h b/include/capture/xcomposite.h new file mode 100644 index 0000000..bf6532e --- /dev/null +++ b/include/capture/xcomposite.h @@ -0,0 +1,17 @@ +#ifndef GSR_CAPTURE_XCOMPOSITE_H +#define GSR_CAPTURE_XCOMPOSITE_H + +#include "capture.h" +#include "../vec2.h" + +typedef struct { + gsr_egl *egl; + unsigned long window; + bool follow_focused; /* If this is set then |window| is ignored */ + bool record_cursor; + vec2i output_resolution; +} gsr_capture_xcomposite_params; + +gsr_capture* gsr_capture_xcomposite_create(const gsr_capture_xcomposite_params *params); + +#endif /* GSR_CAPTURE_XCOMPOSITE_H */ |