1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-12 16:52:07 +01:00
wlroots-hyprland/include/wlr/backend/drm.h

14 lines
318 B
C
Raw Normal View History

2017-05-02 18:13:17 +12:00
#ifndef WLR_BACKEND_DRM_H
#define WLR_BACKEND_DRM_H
#include <wayland-server.h>
2017-07-11 19:18:34 +12:00
#include <wlr/backend/session.h>
2017-05-07 10:00:23 -04:00
#include <wlr/backend.h>
2017-05-03 22:40:19 +12:00
2017-05-07 10:00:23 -04:00
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
2017-08-26 14:02:04 +12:00
struct wlr_session *session, int gpu_fd);
2017-05-02 18:13:17 +12:00
bool wlr_backend_is_drm(struct wlr_backend *backend);
2017-05-02 18:13:17 +12:00
#endif