mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Just like other backends, use the EGL GBM platform. This will make it easier to move the allocator and renderer initialization out of the backends.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			377 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			377 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
wlr_files += files(
 | 
						|
	'backend.c',
 | 
						|
	'output.c',
 | 
						|
	'seat.c',
 | 
						|
	'tablet_v2.c',
 | 
						|
)
 | 
						|
 | 
						|
client_protos = [
 | 
						|
	'drm',
 | 
						|
	'linux-dmabuf-unstable-v1',
 | 
						|
	'pointer-gestures-unstable-v1',
 | 
						|
	'presentation-time',
 | 
						|
	'relative-pointer-unstable-v1',
 | 
						|
	'tablet-unstable-v2',
 | 
						|
	'xdg-decoration-unstable-v1',
 | 
						|
	'xdg-shell',
 | 
						|
]
 | 
						|
 | 
						|
foreach proto : client_protos
 | 
						|
	wlr_files += protocols_client_header[proto]
 | 
						|
endforeach
 |