2017-12-17 11:56:42 +00:00
|
|
|
#ifndef BACKEND_HEADLESS_H
|
|
|
|
#define BACKEND_HEADLESS_H
|
|
|
|
|
|
|
|
#include <wlr/backend/headless.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wlr/backend/interface.h>
|
2017-12-17 11:56:42 +00:00
|
|
|
|
2018-04-04 02:54:01 +00:00
|
|
|
#define HEADLESS_DEFAULT_REFRESH (60 * 1000) // 60 Hz
|
|
|
|
|
2017-12-17 11:56:42 +00:00
|
|
|
struct wlr_headless_backend {
|
|
|
|
struct wlr_backend backend;
|
|
|
|
struct wlr_egl egl;
|
2018-01-23 21:06:54 +00:00
|
|
|
struct wlr_renderer *renderer;
|
2017-12-17 11:56:42 +00:00
|
|
|
struct wl_display *display;
|
|
|
|
struct wl_list outputs;
|
2017-12-17 17:49:20 +00:00
|
|
|
struct wl_list input_devices;
|
2017-12-17 11:56:42 +00:00
|
|
|
struct wl_listener display_destroy;
|
2017-12-17 17:02:55 +00:00
|
|
|
bool started;
|
2017-12-17 11:56:42 +00:00
|
|
|
};
|
|
|
|
|
2017-12-17 17:49:20 +00:00
|
|
|
struct wlr_headless_output {
|
2017-12-17 11:56:42 +00:00
|
|
|
struct wlr_output wlr_output;
|
|
|
|
|
|
|
|
struct wlr_headless_backend *backend;
|
|
|
|
struct wl_list link;
|
|
|
|
|
|
|
|
void *egl_surface;
|
2017-12-17 12:35:07 +00:00
|
|
|
struct wl_event_source *frame_timer;
|
2017-12-17 17:02:55 +00:00
|
|
|
int frame_delay; // ms
|
2017-12-17 11:56:42 +00:00
|
|
|
};
|
|
|
|
|
2017-12-17 17:49:20 +00:00
|
|
|
struct wlr_headless_input_device {
|
|
|
|
struct wlr_input_device wlr_input_device;
|
|
|
|
|
|
|
|
struct wlr_headless_backend *backend;
|
|
|
|
};
|
|
|
|
|
2017-12-17 11:56:42 +00:00
|
|
|
#endif
|