mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
clip surface damage to surface size
This commit is contained in:
parent
72a33b736f
commit
d87c58416b
1 changed files with 3 additions and 0 deletions
|
@ -132,6 +132,9 @@ static void surface_commit(struct wl_client *client,
|
|||
pixman_region32_union(&surface->current.surface_damage,
|
||||
&surface->current.surface_damage,
|
||||
&surface->pending.surface_damage);
|
||||
pixman_region32_intersect_rect(&surface->current.surface_damage,
|
||||
&surface->current.surface_damage, 0, 0, width /
|
||||
surface->current.scale, height / surface->current.scale);
|
||||
|
||||
pixman_region32_union(&surface->current.buffer_damage,
|
||||
&surface->current.buffer_damage,
|
||||
|
|
Loading…
Reference in a new issue