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
|
|
|
|
2018-04-04 04:54:01 +02:00
|
|
|
#define HEADLESS_DEFAULT_REFRESH (60 * 1000) // 60 Hz
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
struct wlr_headless_backend {
|
|
|
|
struct wlr_backend backend;
|
2021-01-07 19:24:13 +01:00
|
|
|
int drm_fd;
|
2020-08-22 17:24:16 +02:00
|
|
|
struct wlr_drm_format *format;
|
2017-12-17 12:56:42 +01:00
|
|
|
struct wl_display *display;
|
|
|
|
struct wl_list outputs;
|
2019-03-15 16:50:28 +01:00
|
|
|
size_t last_output_num;
|
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;
|
2021-04-29 09:18:19 +02:00
|
|
|
struct wlr_renderer *parent_renderer;
|
|
|
|
struct wl_listener parent_renderer_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;
|
|
|
|
|
2020-08-22 17:24:16 +02:00
|
|
|
struct wlr_swapchain *swapchain;
|
|
|
|
struct wlr_buffer *back_buffer, *front_buffer;
|
2020-03-10 17:07:49 +01:00
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2018-09-17 21:46:39 +02:00
|
|
|
struct wlr_headless_backend *headless_backend_from_backend(
|
|
|
|
struct wlr_backend *wlr_backend);
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
#endif
|