Disable direct scanout for surfaces with popups

master
novenary 2 years ago committed by Simon Ser
parent b757ef94ef
commit b28e1b0d3c

@ -496,6 +496,12 @@ static bool scan_out_fullscreen_view(struct sway_output *output,
if (n_surfaces != 1) { if (n_surfaces != 1) {
return false; return false;
} }
size_t n_popups = 0;
output_view_for_each_popup_surface(output, view,
count_surface_iterator, &n_popups);
if (n_popups > 0) {
return false;
}
if (surface->buffer == NULL) { if (surface->buffer == NULL) {
return false; return false;

Loading…
Cancel
Save