mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
output: don't emit the mode event if it hasn't changed
This also fixes #535.
This commit is contained in:
parent
63763d3279
commit
94fa6c88f4
3 changed files with 16 additions and 6 deletions
|
@ -496,11 +496,15 @@ static bool wlr_drm_connector_set_mode(struct wlr_output *output,
|
||||||
conn->state = WLR_DRM_CONN_CONNECTED;
|
conn->state = WLR_DRM_CONN_CONNECTED;
|
||||||
wlr_output_update_mode(&conn->output, mode);
|
wlr_output_update_mode(&conn->output, mode);
|
||||||
|
|
||||||
|
// When switching VTs, the mode is not updated but the buffers become
|
||||||
|
// invalid, so we need to manually damage the output here
|
||||||
|
wlr_output_damage_whole(&conn->output);
|
||||||
|
|
||||||
// Since realloc_crtcs can deallocate planes on OTHER outputs,
|
// Since realloc_crtcs can deallocate planes on OTHER outputs,
|
||||||
// we actually need to reinitialize any than has changed
|
// we actually need to reinitialize any that has changed
|
||||||
ssize_t output_index = -1;
|
ssize_t output_index = -1;
|
||||||
wl_list_for_each(conn, &drm->outputs, link) {
|
wl_list_for_each(conn, &drm->outputs, link) {
|
||||||
output_index += 1;
|
output_index++;
|
||||||
struct wlr_output_mode *mode = conn->output.current_mode;
|
struct wlr_output_mode *mode = conn->output.current_mode;
|
||||||
struct wlr_drm_crtc *crtc = conn->crtc;
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ void wlr_output_update_custom_mode(struct wlr_output *output, int32_t width,
|
||||||
int32_t height, int32_t refresh);
|
int32_t height, int32_t refresh);
|
||||||
void wlr_output_update_enabled(struct wlr_output *output, bool enabled);
|
void wlr_output_update_enabled(struct wlr_output *output, bool enabled);
|
||||||
void wlr_output_update_needs_swap(struct wlr_output *output);
|
void wlr_output_update_needs_swap(struct wlr_output *output);
|
||||||
|
void wlr_output_damage_whole(struct wlr_output *output);
|
||||||
void wlr_output_send_frame(struct wlr_output *output);
|
void wlr_output_send_frame(struct wlr_output *output);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -178,6 +178,11 @@ void wlr_output_update_mode(struct wlr_output *output,
|
||||||
|
|
||||||
void wlr_output_update_custom_mode(struct wlr_output *output, int32_t width,
|
void wlr_output_update_custom_mode(struct wlr_output *output, int32_t width,
|
||||||
int32_t height, int32_t refresh) {
|
int32_t height, int32_t refresh) {
|
||||||
|
if (output->width == width && output->height == height &&
|
||||||
|
output->refresh == refresh) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
output->width = width;
|
output->width = width;
|
||||||
output->height = height;
|
output->height = height;
|
||||||
wlr_output_update_matrix(output);
|
wlr_output_update_matrix(output);
|
||||||
|
@ -563,7 +568,7 @@ void wlr_output_update_needs_swap(struct wlr_output *output) {
|
||||||
wlr_signal_emit_safe(&output->events.needs_swap, output);
|
wlr_signal_emit_safe(&output->events.needs_swap, output);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void output_damage_whole(struct wlr_output *output) {
|
void wlr_output_damage_whole(struct wlr_output *output) {
|
||||||
int width, height;
|
int width, height;
|
||||||
wlr_output_transformed_resolution(output, &width, &height);
|
wlr_output_transformed_resolution(output, &width, &height);
|
||||||
|
|
||||||
|
@ -577,7 +582,7 @@ static void output_fullscreen_surface_reset(struct wlr_output *output) {
|
||||||
wl_list_remove(&output->fullscreen_surface_commit.link);
|
wl_list_remove(&output->fullscreen_surface_commit.link);
|
||||||
wl_list_remove(&output->fullscreen_surface_destroy.link);
|
wl_list_remove(&output->fullscreen_surface_destroy.link);
|
||||||
output->fullscreen_surface = NULL;
|
output->fullscreen_surface = NULL;
|
||||||
output_damage_whole(output);
|
wlr_output_damage_whole(output);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -591,7 +596,7 @@ static void output_fullscreen_surface_handle_commit(
|
||||||
output->fullscreen_height != surface->current->height) {
|
output->fullscreen_height != surface->current->height) {
|
||||||
output->fullscreen_width = surface->current->width;
|
output->fullscreen_width = surface->current->width;
|
||||||
output->fullscreen_height = surface->current->height;
|
output->fullscreen_height = surface->current->height;
|
||||||
output_damage_whole(output);
|
wlr_output_damage_whole(output);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -627,7 +632,7 @@ void wlr_output_set_fullscreen_surface(struct wlr_output *output,
|
||||||
output_fullscreen_surface_reset(output);
|
output_fullscreen_surface_reset(output);
|
||||||
|
|
||||||
output->fullscreen_surface = surface;
|
output->fullscreen_surface = surface;
|
||||||
output_damage_whole(output);
|
wlr_output_damage_whole(output);
|
||||||
|
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue