mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	An output layout consists of a mapping of outputs to their position in a global coordinate system that usually cooresponds to the output position in physical space in front of the user. Add an example that allows configuration of an output layout and demonstrates its boundaries with a bouncing image.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			433 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			433 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
lib_wlr_types = static_library('wlr_types', files(
 | 
						|
    'wlr_input_device.c',
 | 
						|
    'wlr_keyboard.c',
 | 
						|
    'wlr_output.c',
 | 
						|
    'wlr_output_layout.c',
 | 
						|
    'wlr_pointer.c',
 | 
						|
    'wlr_region.c',
 | 
						|
    'wlr_seat.c',
 | 
						|
    'wlr_surface.c',
 | 
						|
    'wlr_tablet_pad.c',
 | 
						|
    'wlr_tablet_tool.c',
 | 
						|
    'wlr_touch.c',
 | 
						|
    'wlr_xdg_shell_v6.c',
 | 
						|
    'wlr_wl_shell.c',
 | 
						|
  ),
 | 
						|
  include_directories: wlr_inc,
 | 
						|
  dependencies: [wayland_server, pixman, wlr_protos])
 |