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