wlroots-hyprland/include/wlr/backend/interface.h

18 lines
414 B
C
Raw Normal View History

2017-06-05 01:30:37 +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>
2017-08-11 04:15:37 +02:00
#include <wlr/egl.h>
2017-05-07 16:00:23 +02:00
struct wlr_backend_impl {
bool (*start)(struct wlr_backend *backend);
void (*destroy)(struct wlr_backend *backend);
struct wlr_egl *(*get_egl)(struct wlr_backend *backend);
2017-05-07 16:00:23 +02:00
};
void wlr_backend_init(struct wlr_backend *backend,
const struct wlr_backend_impl *impl);
2017-05-07 16:00:23 +02:00
#endif