diff options
| author | Liam <byteslice@airmail.cc> | 2022-10-26 21:35:19 -0400 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2022-10-27 08:28:02 -0400 |
| commit | 2cdfbbc07d74548527fbefd738f860ce66f52e34 (patch) | |
| tree | d80f66ca3c2f53d46bb4cc20c9fa29d377da14eb /src/core/hle/service/nvflinger | |
| parent | cdb9fe978ff29b1de2256f0d0cece550195f3fef (diff) | |
nvnflinger: release queued handles immediately on disconnection
Diffstat (limited to 'src/core/hle/service/nvflinger')
| -rw-r--r-- | src/core/hle/service/nvflinger/buffer_queue_producer.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue_producer.cpp b/src/core/hle/service/nvflinger/buffer_queue_producer.cpp index 77ddbb6ef..41ba44b21 100644 --- a/src/core/hle/service/nvflinger/buffer_queue_producer.cpp +++ b/src/core/hle/service/nvflinger/buffer_queue_producer.cpp @@ -742,6 +742,13 @@ Status BufferQueueProducer::Disconnect(NativeWindowApi api) { return Status::NoError; } + // HACK: We are not Android. Remove handle for items in queue, and clear queue. + // Allows synchronous destruction of nvmap handles. + for (auto& item : core->queue) { + nvmap.FreeHandle(item.graphic_buffer->BufferId(), true); + } + core->queue.clear(); + switch (api) { case NativeWindowApi::Egl: case NativeWindowApi::Cpu: |
