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

16 lines
430 B
C
Raw Normal View History

2017-05-02 08:13:17 +02:00
#ifndef WLR_BACKEND_DRM_H
#define WLR_BACKEND_DRM_H
#include <wayland-server.h>
2017-05-07 16:00:23 +02:00
#include <wlr/backend.h>
2018-02-12 21:29:23 +01:00
#include <wlr/backend/session.h>
2017-12-19 19:59:08 +01:00
#include <wlr/types/wlr_output.h>
2017-05-03 12:40:19 +02:00
2017-05-07 16:00:23 +02:00
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
2017-10-01 08:22:47 +02:00
struct wlr_session *session, int gpu_fd, struct wlr_backend *parent);
2017-05-02 08:13:17 +02:00
bool wlr_backend_is_drm(struct wlr_backend *backend);
2017-12-19 19:59:08 +01:00
bool wlr_output_is_drm(struct wlr_output *output);
2017-05-02 08:13:17 +02:00
#endif