2023-04-01 17:05:56 +00:00
|
|
|
#ifndef GSR_CAPTURE_XCOMPOSITE_VAAPI_H
|
|
|
|
#define GSR_CAPTURE_XCOMPOSITE_VAAPI_H
|
2022-10-17 00:55:59 +00:00
|
|
|
|
|
|
|
#include "capture.h"
|
|
|
|
#include "../vec2.h"
|
|
|
|
#include <X11/X.h>
|
|
|
|
|
|
|
|
typedef struct _XDisplay Display;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Window window;
|
2022-11-30 23:47:30 +00:00
|
|
|
bool follow_focused; /* If this is set then |window| is ignored */
|
|
|
|
vec2i region_size; /* This is currently only used with |follow_focused| */
|
2023-04-01 17:05:56 +00:00
|
|
|
} gsr_capture_xcomposite_vaapi_params;
|
2022-10-17 00:55:59 +00:00
|
|
|
|
2023-04-01 17:05:56 +00:00
|
|
|
gsr_capture* gsr_capture_xcomposite_vaapi_create(const gsr_capture_xcomposite_vaapi_params *params);
|
2022-10-17 00:55:59 +00:00
|
|
|
|
2023-04-01 17:05:56 +00:00
|
|
|
#endif /* GSR_CAPTURE_XCOMPOSITE_VAAPI_H */
|