2018-07-13 14:40:56 +02:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
2017-09-23 10:26:01 +02:00
|
|
|
#ifndef WLR_BACKEND_INTERFACE_H
|
|
|
|
#define WLR_BACKEND_INTERFACE_H
|
2017-05-07 16:00:23 +02:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wlr/backend.h>
|
|
|
|
|
2022-09-14 10:43:27 +02:00
|
|
|
struct wlr_output_state;
|
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
struct wlr_backend_impl {
|
2017-08-13 15:59:14 +02:00
|
|
|
bool (*start)(struct wlr_backend *backend);
|
2017-08-12 17:43:36 +02:00
|
|
|
void (*destroy)(struct wlr_backend *backend);
|
2020-12-01 16:00:12 +01:00
|
|
|
int (*get_drm_fd)(struct wlr_backend *backend);
|
2021-04-28 16:09:33 +02:00
|
|
|
uint32_t (*get_buffer_caps)(struct wlr_backend *backend);
|
2022-09-14 10:43:27 +02:00
|
|
|
bool (*test)(struct wlr_backend *backend,
|
|
|
|
const struct wlr_backend_output_state *states, size_t states_len);
|
|
|
|
bool (*commit)(struct wlr_backend *backend,
|
|
|
|
const struct wlr_backend_output_state *states, size_t states_len);
|
2017-05-07 16:00:23 +02:00
|
|
|
};
|
|
|
|
|
2018-03-19 20:46:28 +01:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Initializes common state on a struct wlr_backend and sets the implementation
|
|
|
|
* to the provided struct wlr_backend_impl reference.
|
2018-03-19 20:46:28 +01:00
|
|
|
*/
|
2017-08-13 15:59:14 +02:00
|
|
|
void wlr_backend_init(struct wlr_backend *backend,
|
2017-08-12 17:43:36 +02:00
|
|
|
const struct wlr_backend_impl *impl);
|
2021-04-29 00:07:31 +02:00
|
|
|
/**
|
|
|
|
* Emit the destroy event and clean up common backend state.
|
|
|
|
*/
|
|
|
|
void wlr_backend_finish(struct wlr_backend *backend);
|
2017-05-07 16:00:23 +02:00
|
|
|
|
|
|
|
#endif
|