blob: 6bc5f5f2bd883dcca1110b14a152e8fbe600db29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef GSR_RECORDER_WINDOWING_H
#define GSR_RECORDER_WINDOWING_H
#include <stdbool.h>
#include "../defs.h"
#include "../egl.h"
#include <X11/Xlib.h>
typedef struct {
bool monitor_capture;
bool gl_debug;
bool listen_to_x11_events;
} gsr_windowing_params;
typedef struct {
Display *display;
gsr_window *window;
gsr_egl egl;
bool egl_loaded;
bool card_path_found;
} gsr_windowing;
/* Returns a |gsr_error| value. Connects to the display server and creates a window */
int gsr_windowing_init(gsr_windowing *self, const gsr_windowing_params *params);
/* Returns a |gsr_error| value. Loads opengl and finds the drm card to use */
int gsr_windowing_load_egl(gsr_windowing *self, const gsr_windowing_params *params);
bool gsr_windowing_is_wayland(const gsr_windowing *self);
bool gsr_windowing_is_using_prime_run(void);
void gsr_windowing_disable_prime_run(void);
bool monitor_capture_use_drm(const gsr_window *window, gsr_gpu_vendor vendor);
#endif /* GSR_RECORDER_WINDOWING_H */
|