2018-07-13 14:40:56 +02:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
2017-05-02 08:13:17 +02:00
|
|
|
#ifndef WLR_BACKEND_DRM_H
|
|
|
|
#define WLR_BACKEND_DRM_H
|
|
|
|
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.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
|
|
|
|
2018-03-19 20:46:28 +01: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 16:00:23 +02:00
|
|
|
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
|
2018-05-25 12:14:35 +02:00
|
|
|
struct wlr_session *session, int gpu_fd, struct wlr_backend *parent,
|
|
|
|
wlr_renderer_create_func_t create_renderer_func);
|
2017-05-02 08:13:17 +02:00
|
|
|
|
2017-08-13 23:05:57 +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-08-13 23:05:57 +02:00
|
|
|
|
2018-08-13 08:37:44 +02:00
|
|
|
/**
|
|
|
|
* Add mode to the list of available modes
|
|
|
|
*/
|
|
|
|
typedef struct _drmModeModeInfo drmModeModeInfo;
|
2019-10-26 22:35:51 +02:00
|
|
|
struct wlr_output_mode *wlr_drm_connector_add_mode(struct wlr_output *output,
|
|
|
|
const drmModeModeInfo *mode);
|
2018-08-13 08:37:44 +02:00
|
|
|
|
2017-05-02 08:13:17 +02:00
|
|
|
#endif
|