mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	It's cumbersome for compositors to guard every wlr_color_transform_ref() or wlr_color_transform_unref() call behind a #if WLR_HAS_COLOR_MANAGEMENT. Moreover, none of the LCMS2 types are used in our public API. Instead, always install the color.h header, and add a stub for wlr_color_transform_init_linear_to_icc().
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			284 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			284 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <wlr/render/color.h>
 | 
						|
#include <wlr/util/log.h>
 | 
						|
 | 
						|
struct wlr_color_transform *wlr_color_transform_init_linear_to_icc(
 | 
						|
		const void *data, size_t size) {
 | 
						|
	wlr_log(WLR_ERROR, "Cannot create color transform from ICC profile: "
 | 
						|
		"LCMS2 is compile-time disabled");
 | 
						|
	return NULL;
 | 
						|
}
 |