mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	Implement damage tracking
This commit is contained in:
		
							parent
							
								
									695ce28b55
								
							
						
					
					
						commit
						54804fd3df
					
				
					 15 changed files with 881 additions and 321 deletions
				
			
		
							
								
								
									
										10
									
								
								src/view.c
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								src/view.c
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -39,3 +39,13 @@ view_for_each_surface(struct view *view, wlr_surface_iterator_func_t iterator,
 | 
			
		|||
	view->impl->for_each_surface(view, iterator, user_data);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void
 | 
			
		||||
view_for_each_popup(struct view *view, wlr_surface_iterator_func_t iterator,
 | 
			
		||||
		void *data)
 | 
			
		||||
{
 | 
			
		||||
	if (!view->impl->for_each_popup) {
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
	view->impl->for_each_popup(view, iterator, data);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue