2017-05-02 06:13:17 +00:00
|
|
|
#ifndef WLR_BACKEND_DRM_H
|
|
|
|
#define WLR_BACKEND_DRM_H
|
|
|
|
|
|
|
|
#include <wayland-server.h>
|
2017-05-07 14:00:23 +00:00
|
|
|
#include <wlr/backend.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wlr/backend/session.h>
|
2017-12-19 18:59:08 +00:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-05-03 10:40:19 +00:00
|
|
|
|
2018-03-19 19:46:28 +00:00
|
|
|
/**
|
|
|
|
* Creates a DRM backend using the specified GPU file descriptor (typically from
|
|
|
|
* a device node in /dev/dri).
|
|
|
|
*
|
|
|
|
* To slave this to another DRM backend, pass it as the parent (which _must_ be
|
|
|
|
* a DRM backend, other kinds of backends raise SIGABRT).
|
|
|
|
*/
|
2017-05-07 14:00:23 +00:00
|
|
|
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
|
2017-10-01 06:22:47 +00:00
|
|
|
struct wlr_session *session, int gpu_fd, struct wlr_backend *parent);
|
2017-05-02 06:13:17 +00:00
|
|
|
|
2017-08-13 21:05:57 +00:00
|
|
|
bool wlr_backend_is_drm(struct wlr_backend *backend);
|
2017-12-19 18:59:08 +00:00
|
|
|
bool wlr_output_is_drm(struct wlr_output *output);
|
2017-08-13 21:05:57 +00:00
|
|
|
|
2017-05-02 06:13:17 +00:00
|
|
|
#endif
|