mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	GAMMA_LUT_SIZE isn't an atomic property. It can be used with the legacy interface too. So we can unify both codepaths and remove wlr_drm_interface.crtc_get_gamma_size. It's no guaranteed to exist though, so we still need to keep the fallback.
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			659 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			659 B
		
	
	
	
		
			C
		
	
	
	
	
	
#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);
 | 
						|
};
 | 
						|
 | 
						|
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
 |