2018-07-13 12:40:56 +00: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 08:26:01 +00:00
|
|
|
#ifndef WLR_BACKEND_INTERFACE_H
|
|
|
|
#define WLR_BACKEND_INTERFACE_H
|
2017-05-07 14:00:23 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
2018-10-01 20:44:33 +00:00
|
|
|
#include <time.h>
|
2017-05-07 14:00:23 +00:00
|
|
|
#include <wlr/backend.h>
|
|
|
|
|
|
|
|
struct wlr_backend_impl {
|
2017-08-13 13:59:14 +00:00
|
|
|
bool (*start)(struct wlr_backend *backend);
|
2017-08-12 15:43:36 +00:00
|
|
|
void (*destroy)(struct wlr_backend *backend);
|
2018-09-24 21:17:08 +00:00
|
|
|
struct wlr_session *(*get_session)(struct wlr_backend *backend);
|
2018-10-01 20:57:36 +00:00
|
|
|
clockid_t (*get_presentation_clock)(struct wlr_backend *backend);
|
2020-12-01 15:00:12 +00:00
|
|
|
int (*get_drm_fd)(struct wlr_backend *backend);
|
2021-04-28 14:09:33 +00:00
|
|
|
uint32_t (*get_buffer_caps)(struct wlr_backend *backend);
|
2017-05-07 14:00:23 +00:00
|
|
|
};
|
|
|
|
|
2018-03-19 19:46:28 +00:00
|
|
|
/**
|
|
|
|
* Initializes common state on a wlr_backend and sets the implementation to the
|
|
|
|
* provided wlr_backend_impl reference.
|
|
|
|
*/
|
2017-08-13 13:59:14 +00:00
|
|
|
void wlr_backend_init(struct wlr_backend *backend,
|
2017-08-12 15:43:36 +00:00
|
|
|
const struct wlr_backend_impl *impl);
|
2021-04-28 22:07:31 +00:00
|
|
|
/**
|
|
|
|
* Emit the destroy event and clean up common backend state.
|
|
|
|
*/
|
|
|
|
void wlr_backend_finish(struct wlr_backend *backend);
|
2017-05-07 14:00:23 +00:00
|
|
|
|
|
|
|
#endif
|