mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
4fa90b0511
This backports some changes to #319 to fix the screenshooter data format. This also adds wlr_backend_get_renderer which will be useful to support multiple renderers.
35 lines
716 B
C
35 lines
716 B
C
#ifndef BACKEND_HEADLESS_H
|
|
#define BACKEND_HEADLESS_H
|
|
|
|
#include <wlr/backend/interface.h>
|
|
#include <wlr/backend/headless.h>
|
|
|
|
struct wlr_headless_backend {
|
|
struct wlr_backend backend;
|
|
struct wlr_egl egl;
|
|
struct wlr_renderer *renderer;
|
|
struct wl_display *display;
|
|
struct wl_list outputs;
|
|
struct wl_list input_devices;
|
|
struct wl_listener display_destroy;
|
|
bool started;
|
|
};
|
|
|
|
struct wlr_headless_output {
|
|
struct wlr_output wlr_output;
|
|
|
|
struct wlr_headless_backend *backend;
|
|
struct wl_list link;
|
|
|
|
void *egl_surface;
|
|
struct wl_event_source *frame_timer;
|
|
int frame_delay; // ms
|
|
};
|
|
|
|
struct wlr_headless_input_device {
|
|
struct wlr_input_device wlr_input_device;
|
|
|
|
struct wlr_headless_backend *backend;
|
|
};
|
|
|
|
#endif
|