mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	backend/drm: add special case for cursor in add_plane
The code calling add_plane now makes sure not to add a cursor plane to a CRTC which already has one.
This commit is contained in:
		
							parent
							
								
									5548406667
								
							
						
					
					
						commit
						c011a0e2ed
					
				
					 1 changed files with 1 additions and 4 deletions
				
			
		| 
						 | 
					@ -92,10 +92,7 @@ static bool add_plane(struct wlr_drm_backend *drm,
 | 
				
			||||||
		struct wlr_drm_crtc *crtc, drmModePlane *drm_plane,
 | 
							struct wlr_drm_crtc *crtc, drmModePlane *drm_plane,
 | 
				
			||||||
		uint32_t type, union wlr_drm_plane_props *props) {
 | 
							uint32_t type, union wlr_drm_plane_props *props) {
 | 
				
			||||||
	assert(!(type == DRM_PLANE_TYPE_PRIMARY && crtc->primary));
 | 
						assert(!(type == DRM_PLANE_TYPE_PRIMARY && crtc->primary));
 | 
				
			||||||
 | 
						assert(!(type == DRM_PLANE_TYPE_CURSOR && crtc->cursor));
 | 
				
			||||||
	if (type == DRM_PLANE_TYPE_CURSOR && crtc->cursor) {
 | 
					 | 
				
			||||||
		return true;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	struct wlr_drm_plane *p = calloc(1, sizeof(*p));
 | 
						struct wlr_drm_plane *p = calloc(1, sizeof(*p));
 | 
				
			||||||
	if (!p) {
 | 
						if (!p) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue