2017-09-30 08:11:41 +02:00
|
|
|
#ifndef BACKEND_DRM_IFACE_H
|
|
|
|
#define BACKEND_DRM_IFACE_H
|
|
|
|
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <gbm.h>
|
2017-09-30 08:11:41 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.h>
|
|
|
|
|
|
|
|
struct wlr_drm_backend;
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_connector;
|
2017-09-30 08:11:41 +02:00
|
|
|
struct wlr_drm_crtc;
|
|
|
|
|
|
|
|
// Used to provide atomic or legacy DRM functions
|
|
|
|
struct wlr_drm_interface {
|
2020-05-07 19:20:56 +02: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 08:11:41 +02:00
|
|
|
};
|
|
|
|
|
2017-10-02 10:44:33 +02:00
|
|
|
extern const struct wlr_drm_interface atomic_iface;
|
|
|
|
extern const struct wlr_drm_interface legacy_iface;
|
2017-09-30 08:11:41 +02:00
|
|
|
|
2020-05-07 17:50:40 +02:00
|
|
|
bool drm_legacy_crtc_set_gamma(struct wlr_drm_backend *drm,
|
2020-05-14 18:27:02 +02:00
|
|
|
struct wlr_drm_crtc *crtc, size_t size, uint16_t *lut);
|
2020-05-07 17:50:40 +02:00
|
|
|
|
2017-09-30 08:11:41 +02:00
|
|
|
#endif
|