mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	backend/drm: update output enabled property on modeset
This commit is contained in:
		
							parent
							
								
									39d5e78d37
								
							
						
					
					
						commit
						bb39277e97
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
					@ -207,6 +207,7 @@ static void wlr_drm_connector_swap_buffers(struct wlr_output *output) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (drm->iface->crtc_pageflip(drm, conn, crtc, fb_id, NULL)) {
 | 
						if (drm->iface->crtc_pageflip(drm, conn, crtc, fb_id, NULL)) {
 | 
				
			||||||
		conn->pageflip_pending = true;
 | 
							conn->pageflip_pending = true;
 | 
				
			||||||
 | 
							wlr_output_update_enabled(output, true);
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		wl_event_source_timer_update(conn->retry_pageflip,
 | 
							wl_event_source_timer_update(conn->retry_pageflip,
 | 
				
			||||||
			1000.0f / conn->output.current_mode->refresh);
 | 
								1000.0f / conn->output.current_mode->refresh);
 | 
				
			||||||
| 
						 | 
					@ -245,6 +246,7 @@ void wlr_drm_connector_start_renderer(struct wlr_drm_connector *conn) {
 | 
				
			||||||
	struct wlr_drm_mode *mode = (struct wlr_drm_mode *)conn->output.current_mode;
 | 
						struct wlr_drm_mode *mode = (struct wlr_drm_mode *)conn->output.current_mode;
 | 
				
			||||||
	if (drm->iface->crtc_pageflip(drm, conn, crtc, fb_id, &mode->drm_mode)) {
 | 
						if (drm->iface->crtc_pageflip(drm, conn, crtc, fb_id, &mode->drm_mode)) {
 | 
				
			||||||
		conn->pageflip_pending = true;
 | 
							conn->pageflip_pending = true;
 | 
				
			||||||
 | 
							wlr_output_update_enabled(&conn->output, true);
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		wl_event_source_timer_update(conn->retry_pageflip,
 | 
							wl_event_source_timer_update(conn->retry_pageflip,
 | 
				
			||||||
			1000.0f / conn->output.current_mode->refresh);
 | 
								1000.0f / conn->output.current_mode->refresh);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue