aboutsummaryrefslogtreecommitdiff
path: root/include/backend/drm/iface.h
blob: e9bf80401935bdd95bef9ec2695630d858a9eb6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef BACKEND_DRM_IFACE_H
#define BACKEND_DRM_IFACE_H

#include <gbm.h>
#include <stdbool.h>
#include <stdint.h>
#include <xf86drm.h>
#include <xf86drmMode.h>

struct wlr_drm_backend;
struct wlr_drm_connector;
struct wlr_drm_crtc;

// Used to provide atomic or legacy DRM functions
struct wlr_drm_interface {
	// Commit al pending changes on a CRTC.
	bool (*crtc_commit)(struct wlr_drm_backend *drm,
		struct wlr_drm_connector *conn, uint32_t flags);
	// Enable the cursor buffer on crtc. Set bo to NULL to disable
	bool (*crtc_set_cursor)(struct wlr_drm_backend *drm,
		struct wlr_drm_crtc *crtc, struct gbm_bo *bo);
	// Get the gamma lut size of a crtc
	size_t (*crtc_get_gamma_size)(struct wlr_drm_backend *drm,
		struct wlr_drm_crtc *crtc);
};

extern const struct wlr_drm_interface atomic_iface;
extern const struct wlr_drm_interface legacy_iface;

bool drm_legacy_crtc_set_gamma(struct wlr_drm_backend *drm,
	struct wlr_drm_crtc *crtc);

#endif