From 70883fd10beba4f78e3325eb6e38750360502f58 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 7 May 2020 17:50:40 +0200 Subject: backend/drm: apply gamma LUT on page-flip --- include/backend/drm/drm.h | 1 + include/backend/drm/iface.h | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'include/backend/drm') diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h index e8fc452a..9efa3eaa 100644 --- a/include/backend/drm/drm.h +++ b/include/backend/drm/drm.h @@ -44,6 +44,7 @@ struct wlr_drm_plane { enum wlr_drm_crtc_field { WLR_DRM_CRTC_MODE = 1 << 0, + WLR_DRM_CRTC_GAMMA_LUT = 1 << 1, }; struct wlr_drm_crtc { diff --git a/include/backend/drm/iface.h b/include/backend/drm/iface.h index 6e074249..b99262b8 100644 --- a/include/backend/drm/iface.h +++ b/include/backend/drm/iface.h @@ -22,10 +22,6 @@ struct wlr_drm_interface { // 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); - // Set the gamma lut on crtc - bool (*crtc_set_gamma)(struct wlr_drm_backend *drm, - struct wlr_drm_crtc *crtc, size_t size, - uint16_t *r, uint16_t *g, uint16_t *b); // Get the gamma lut size of a crtc size_t (*crtc_get_gamma_size)(struct wlr_drm_backend *drm, struct wlr_drm_crtc *crtc); @@ -34,4 +30,7 @@ struct wlr_drm_interface { 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 -- cgit v1.2.3