wlr_compositor: Decide opacity from new has_buffer flag.

`wlr_surface_get_texture` will always return NULL if the compositor was
not given a renderer.
This commit is contained in:
Alexander Orzechowski 2023-05-03 23:50:05 -04:00 committed by Simon Ser
parent 394accbe4a
commit ec796afb6e
1 changed files with 1 additions and 2 deletions

View File

@ -390,8 +390,7 @@ static void surface_apply_damage(struct wlr_surface *surface) {
}
static void surface_update_opaque_region(struct wlr_surface *surface) {
struct wlr_texture *texture = wlr_surface_get_texture(surface);
if (texture == NULL) {
if (!surface->has_buffer) {
pixman_region32_clear(&surface->opaque_region);
return;
}