2017-09-30 06:11:41 +00:00
|
|
|
#ifndef BACKEND_DRM_IFACE_H
|
|
|
|
#define BACKEND_DRM_IFACE_H
|
|
|
|
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <gbm.h>
|
2017-09-30 06:11:41 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.h>
|
|
|
|
|
|
|
|
struct wlr_drm_backend;
|
2017-09-30 10:31:08 +00:00
|
|
|
struct wlr_drm_connector;
|
2017-09-30 06:11:41 +00:00
|
|
|
struct wlr_drm_crtc;
|
|
|
|
|
|
|
|
// Used to provide atomic or legacy DRM functions
|
|
|
|
struct wlr_drm_interface {
|
2017-09-30 10:31:08 +00:00
|
|
|
// Enable or disable DPMS for connector
|
2018-01-06 23:28:21 +00:00
|
|
|
bool (*conn_enable)(struct wlr_drm_backend *drm,
|
2017-09-30 10:31:08 +00:00
|
|
|
struct wlr_drm_connector *conn, bool enable);
|
2020-05-07 17:20:56 +00:00
|
|
|
// Commit al pending changes on a CRTC.
|
|
|
|
bool (*crtc_commit)(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_connector *conn, uint32_t flags);
|
2017-09-30 06:11:41 +00:00
|
|
|
// Enable the cursor buffer on crtc. Set bo to NULL to disable
|
2017-09-30 09:22:26 +00:00
|
|
|
bool (*crtc_set_cursor)(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc, struct gbm_bo *bo);
|
2018-02-04 20:03:44 +00:00
|
|
|
// Get the gamma lut size of a crtc
|
2018-10-03 08:36:33 +00:00
|
|
|
size_t (*crtc_get_gamma_size)(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc);
|
2017-09-30 06:11:41 +00:00
|
|
|
};
|
|
|
|
|
2017-10-02 08:44:33 +00:00
|
|
|
extern const struct wlr_drm_interface atomic_iface;
|
|
|
|
extern const struct wlr_drm_interface legacy_iface;
|
2017-09-30 06:11:41 +00:00
|
|
|
|
2020-05-07 15:50:40 +00:00
|
|
|
bool drm_legacy_crtc_set_gamma(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc);
|
|
|
|
|
2017-09-30 06:11:41 +00:00
|
|
|
#endif
|