mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-03 09:01:40 -05:00
wlr_scene: Don't cull the entire output when entering direct scanout
We don't need to.
This commit is contained in:
parent
5477ad7d90
commit
fe21fc6920
1 changed files with 4 additions and 2 deletions
|
|
@ -1504,8 +1504,10 @@ bool wlr_scene_output_commit(struct wlr_scene_output *scene_output) {
|
||||||
scene_output->prev_scanout = scanout;
|
scene_output->prev_scanout = scanout;
|
||||||
wlr_log(WLR_DEBUG, "Direct scan-out %s",
|
wlr_log(WLR_DEBUG, "Direct scan-out %s",
|
||||||
scanout ? "enabled" : "disabled");
|
scanout ? "enabled" : "disabled");
|
||||||
// When exiting direct scan-out, damage everything
|
if (!scanout) {
|
||||||
wlr_damage_ring_add_whole(&scene_output->damage_ring);
|
// When exiting direct scan-out, damage everything
|
||||||
|
wlr_damage_ring_add_whole(&scene_output->damage_ring);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (scanout) {
|
if (scanout) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue