mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 08:32:30 +00:00
wlr_scene: Don't use direct scanout if trying to commit a new render_format
Found by inspection.
This commit is contained in:
parent
ac426c0c24
commit
0925a500d1
@ -1484,7 +1484,9 @@ static bool scene_buffer_can_consider_direct_scanout(struct wlr_scene_buffer *bu
|
||||
return false;
|
||||
}
|
||||
|
||||
if (state->committed & (WLR_OUTPUT_STATE_MODE | WLR_OUTPUT_STATE_ENABLED)) {
|
||||
if (state->committed & (WLR_OUTPUT_STATE_MODE |
|
||||
WLR_OUTPUT_STATE_ENABLED |
|
||||
WLR_OUTPUT_STATE_RENDER_FORMAT)) {
|
||||
// Legacy DRM will explode if we try to modeset with a direct scanout buffer
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user