diff options
author | bunnei <bunneidev@gmail.com> | 2022-04-01 22:56:32 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2022-04-01 22:56:32 -0700 |
commit | 7610554b1e87294fc946ca62ce01258a4b238151 (patch) | |
tree | 89702efe43918da81ef9399fc69a890a0b58ef80 | |
parent | f9371f36a42da3112a762eee7af23ac7cdbf2fce (diff) |
hle: service: nvflinger: buffer_queue_core: Cleanup & fixes.
-rw-r--r-- | src/core/hle/service/nvflinger/buffer_queue_core.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/service/nvflinger/buffer_queue_core.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue_core.cpp b/src/core/hle/service/nvflinger/buffer_queue_core.cpp index 6082610e0..3a0481786 100644 --- a/src/core/hle/service/nvflinger/buffer_queue_core.cpp +++ b/src/core/hle/service/nvflinger/buffer_queue_core.cpp @@ -95,7 +95,6 @@ void BufferQueueCore::FreeBufferLocked(s32 slot) { } void BufferQueueCore::FreeAllBuffersLocked() { - queue.clear(); buffer_has_been_queued = false; for (s32 slot = 0; slot < BufferQueueDefs::NUM_BUFFER_SLOTS; ++slot) { diff --git a/src/core/hle/service/nvflinger/buffer_queue_core.h b/src/core/hle/service/nvflinger/buffer_queue_core.h index 4dfd53387..e4e0937cb 100644 --- a/src/core/hle/service/nvflinger/buffer_queue_core.h +++ b/src/core/hle/service/nvflinger/buffer_queue_core.h @@ -73,8 +73,6 @@ private: u32 transform_hint{}; bool is_allocating{}; mutable std::condition_variable_any is_allocating_condition; - bool allow_allocation{true}; - u64 buffer_age{}; bool is_shutting_down{}; }; |