mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
bug: null buffer commit detection
This commit is contained in:
parent
d0d6413772
commit
100b39c608
1 changed files with 6 additions and 1 deletions
|
@ -347,8 +347,13 @@ static void wlr_surface_commit_pending(struct wlr_surface *surface) {
|
||||||
int32_t oldw = surface->current->buffer_width;
|
int32_t oldw = surface->current->buffer_width;
|
||||||
int32_t oldh = surface->current->buffer_height;
|
int32_t oldh = surface->current->buffer_height;
|
||||||
|
|
||||||
|
bool null_buffer_commit =
|
||||||
|
(surface->pending->invalid & WLR_SURFACE_INVALID_BUFFER &&
|
||||||
|
surface->pending->buffer == NULL);
|
||||||
|
|
||||||
wlr_surface_move_state(surface, surface->pending, surface->current);
|
wlr_surface_move_state(surface, surface->pending, surface->current);
|
||||||
if (!surface->current->buffer) {
|
|
||||||
|
if (null_buffer_commit) {
|
||||||
surface->texture->valid = false;
|
surface->texture->valid = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue