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 {
|
2017-09-30 12:31:08 +02:00
|
|
|
// Enable or disable DPMS for connector
|
2018-01-07 00:28:21 +01:00
|
|
|
bool (*conn_enable)(struct wlr_drm_backend *drm,
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_connector *conn, bool enable);
|
2017-09-30 08:11:41 +02:00
|
|
|
// Pageflip on crtc. If mode is non-NULL perform a full modeset using it.
|
2017-09-30 11:22:26 +02:00
|
|
|
bool (*crtc_pageflip)(struct wlr_drm_backend *drm,
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_connector *conn, struct wlr_drm_crtc *crtc,
|
2017-09-30 11:22:26 +02:00
|
|
|
uint32_t fb_id, drmModeModeInfo *mode);
|
2017-09-30 08:11:41 +02:00
|
|
|
// Enable the cursor buffer on crtc. Set bo to NULL to disable
|
2017-09-30 11:22:26 +02:00
|
|
|
bool (*crtc_set_cursor)(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc, struct gbm_bo *bo);
|
2017-09-30 08:11:41 +02:00
|
|
|
// Move the cursor on crtc
|
2017-09-30 11:22:26 +02:00
|
|
|
bool (*crtc_move_cursor)(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc, int x, int y);
|
2018-02-01 20:27:35 +01:00
|
|
|
// Set the gamma lut on crtc
|
|
|
|
bool (*crtc_set_gamma)(struct wlr_drm_backend *drm,
|
2018-10-03 10:36:33 +02:00
|
|
|
struct wlr_drm_crtc *crtc, size_t size,
|
|
|
|
uint16_t *r, uint16_t *g, uint16_t *b);
|
2018-02-04 21:03:44 +01:00
|
|
|
// Get the gamma lut size of a crtc
|
2018-10-03 10:36:33 +02:00
|
|
|
size_t (*crtc_get_gamma_size)(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc);
|
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
|
|
|
|
|
|
|
#endif
|