mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef RENDER_DRM_FORMAT_SET_H
 | 
						|
#define RENDER_DRM_FORMAT_SET_H
 | 
						|
 | 
						|
#include <wlr/render/drm_format_set.h>
 | 
						|
 | 
						|
struct wlr_drm_format *wlr_drm_format_create(uint32_t format);
 | 
						|
bool wlr_drm_format_has(const struct wlr_drm_format *fmt, uint64_t modifier);
 | 
						|
bool wlr_drm_format_add(struct wlr_drm_format **fmt_ptr, uint64_t modifier);
 | 
						|
struct wlr_drm_format *wlr_drm_format_dup(const struct wlr_drm_format *format);
 | 
						|
/**
 | 
						|
 * Intersect modifiers for two DRM formats.
 | 
						|
 *
 | 
						|
 * Both arguments must have the same format field. If the formats aren't
 | 
						|
 * compatible, NULL is returned. If either format doesn't support any modifier,
 | 
						|
 * a format that doesn't support any modifier is returned.
 | 
						|
 */
 | 
						|
struct wlr_drm_format *wlr_drm_format_intersect(
 | 
						|
	const struct wlr_drm_format *a, const struct wlr_drm_format *b);
 | 
						|
 | 
						|
#endif
 |