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>
|
|
|
|
#include <wlr/backend.h>
|
2017-08-11 02:15:37 +00:00
|
|
|
#include <wlr/egl.h>
|
2017-05-07 14:00:23 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
struct wlr_egl *(*get_egl)(struct wlr_backend *backend);
|
2017-05-07 14:00:23 +00:00
|
|
|
};
|
|
|
|
|
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);
|
2017-05-07 14:00:23 +00:00
|
|
|
|
|
|
|
#endif
|