mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	backend/drm: implement get_drm_fd
This commit is contained in:
		
							parent
							
								
									400f4e7f27
								
							
						
					
					
						commit
						b7c95d483a
					
				
					 1 changed files with 11 additions and 0 deletions
				
			
		| 
						 | 
					@ -77,11 +77,22 @@ static clockid_t backend_get_presentation_clock(struct wlr_backend *backend) {
 | 
				
			||||||
	return drm->clock;
 | 
						return drm->clock;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static int backend_get_drm_fd(struct wlr_backend *backend) {
 | 
				
			||||||
 | 
						struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (drm->parent) {
 | 
				
			||||||
 | 
							return drm->parent->fd;
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							return drm->fd;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static struct wlr_backend_impl backend_impl = {
 | 
					static struct wlr_backend_impl backend_impl = {
 | 
				
			||||||
	.start = backend_start,
 | 
						.start = backend_start,
 | 
				
			||||||
	.destroy = backend_destroy,
 | 
						.destroy = backend_destroy,
 | 
				
			||||||
	.get_renderer = backend_get_renderer,
 | 
						.get_renderer = backend_get_renderer,
 | 
				
			||||||
	.get_presentation_clock = backend_get_presentation_clock,
 | 
						.get_presentation_clock = backend_get_presentation_clock,
 | 
				
			||||||
 | 
						.get_drm_fd = backend_get_drm_fd,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool wlr_backend_is_drm(struct wlr_backend *b) {
 | 
					bool wlr_backend_is_drm(struct wlr_backend *b) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue