mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	wlr region/surface: explicitely select interface fields
This commit is contained in:
		
							parent
							
								
									fc1a851415
								
							
						
					
					
						commit
						03b29eb32c
					
				
					 2 changed files with 13 additions and 13 deletions
				
			
		| 
						 | 
				
			
			@ -26,9 +26,9 @@ static void region_destroy(struct wl_client *client, struct wl_resource *resourc
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
static const struct wl_region_interface region_interface = {
 | 
			
		||||
	region_destroy,
 | 
			
		||||
	region_add,
 | 
			
		||||
	region_subtract,
 | 
			
		||||
	.destroy = region_destroy,
 | 
			
		||||
	.add = region_add,
 | 
			
		||||
	.subtract = region_subtract,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static void destroy_region(struct wl_resource *resource) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -326,16 +326,16 @@ static void surface_damage_buffer(struct wl_client *client,
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
const struct wl_surface_interface surface_interface = {
 | 
			
		||||
	surface_destroy,
 | 
			
		||||
	surface_attach,
 | 
			
		||||
	surface_damage,
 | 
			
		||||
	surface_frame,
 | 
			
		||||
	surface_set_opaque_region,
 | 
			
		||||
	surface_set_input_region,
 | 
			
		||||
	surface_commit,
 | 
			
		||||
	surface_set_buffer_transform,
 | 
			
		||||
	surface_set_buffer_scale,
 | 
			
		||||
	surface_damage_buffer
 | 
			
		||||
	.destroy = surface_destroy,
 | 
			
		||||
	.attach = surface_attach,
 | 
			
		||||
	.damage = surface_damage,
 | 
			
		||||
	.frame = surface_frame,
 | 
			
		||||
	.set_opaque_region = surface_set_opaque_region,
 | 
			
		||||
	.set_input_region = surface_set_input_region,
 | 
			
		||||
	.commit = surface_commit,
 | 
			
		||||
	.set_buffer_transform = surface_set_buffer_transform,
 | 
			
		||||
	.set_buffer_scale = surface_set_buffer_scale,
 | 
			
		||||
	.damage_buffer = surface_damage_buffer
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static void destroy_surface(struct wl_resource *resource) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue