mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Merge pull request #536 from Timidger/bugfix/drm-refresh-double-send-mode-info
Send mode info on DRM refresh only once
This commit is contained in:
		
						commit
						836b46c297
					
				
					 1 changed files with 2 additions and 20 deletions
				
			
		| 
						 | 
				
			
			@ -163,16 +163,7 @@ bool wlr_output_set_mode(struct wlr_output *output,
 | 
			
		|||
	if (!output->impl || !output->impl->set_mode) {
 | 
			
		||||
		return false;
 | 
			
		||||
	}
 | 
			
		||||
	bool result = output->impl->set_mode(output, mode);
 | 
			
		||||
	if (result) {
 | 
			
		||||
		wlr_output_update_matrix(output);
 | 
			
		||||
 | 
			
		||||
		struct wl_resource *resource;
 | 
			
		||||
		wl_resource_for_each(resource, &output->wl_resources) {
 | 
			
		||||
			wlr_output_send_current_mode_to_resource(resource);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return result;
 | 
			
		||||
	return output->impl->set_mode(output, mode);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool wlr_output_set_custom_mode(struct wlr_output *output, int32_t width,
 | 
			
		||||
| 
						 | 
				
			
			@ -180,16 +171,7 @@ bool wlr_output_set_custom_mode(struct wlr_output *output, int32_t width,
 | 
			
		|||
	if (!output->impl || !output->impl->set_custom_mode) {
 | 
			
		||||
		return false;
 | 
			
		||||
	}
 | 
			
		||||
	bool result = output->impl->set_custom_mode(output, width, height, refresh);
 | 
			
		||||
	if (result) {
 | 
			
		||||
		wlr_output_update_matrix(output);
 | 
			
		||||
 | 
			
		||||
		struct wl_resource *resource;
 | 
			
		||||
		wl_resource_for_each(resource, &output->wl_resources) {
 | 
			
		||||
			wlr_output_send_current_mode_to_resource(resource);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return result;
 | 
			
		||||
	return output->impl->set_custom_mode(output, width, height, refresh);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void wlr_output_update_mode(struct wlr_output *output,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue