mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-10 10:09:49 +01:00
core/compositor: fix too early buffer release (#8966)
This commit is contained in:
parent
602d6b7356
commit
6a90b50545
1 changed files with 4 additions and 4 deletions
|
@ -428,6 +428,7 @@ void CWLSurfaceResource::commitPendingState() {
|
|||
pending.damage.clear();
|
||||
pending.bufferDamage.clear();
|
||||
pending.newBuffer = false;
|
||||
dropPendingBuffer(); // at this point current.buffer holds the same SP and we don't use pending anymore
|
||||
|
||||
events.roleCommit.emit();
|
||||
|
||||
|
@ -448,10 +449,9 @@ void CWLSurfaceResource::commitPendingState() {
|
|||
|
||||
// release the buffer if it's synchronous as update() has done everything thats needed
|
||||
// so we can let the app know we're done.
|
||||
if (current.buffer->buffer->isSynchronous()) {
|
||||
dropCurrentBuffer();
|
||||
dropPendingBuffer(); // pending atm is just a copied ref of the current, drop it too to send a release
|
||||
}
|
||||
// Some clients aren't ready to receive a release this early. Should be fine to release it on the next commitPendingState.
|
||||
// if (current.buffer->buffer->isSynchronous())
|
||||
// dropCurrentBuffer();
|
||||
}
|
||||
|
||||
// TODO: we should _accumulate_ and not replace above if sync
|
||||
|
|
Loading…
Reference in a new issue