diff options
author | Liam <byteslice@airmail.cc> | 2023-05-11 23:08:14 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-05-11 23:08:14 +0200 |
commit | 6e10a0c1305f4210f725da03cfc5ebc4e34a672c (patch) | |
tree | f6b0022178c88f21491deba7c4ba772dc6ff587f /src/core | |
parent | Merge pull request #10132 from Kelebek1/fermi_blit2 (diff) | |
download | yuzu-6e10a0c1305f4210f725da03cfc5ebc4e34a672c.tar yuzu-6e10a0c1305f4210f725da03cfc5ebc4e34a672c.tar.gz yuzu-6e10a0c1305f4210f725da03cfc5ebc4e34a672c.tar.bz2 yuzu-6e10a0c1305f4210f725da03cfc5ebc4e34a672c.tar.lz yuzu-6e10a0c1305f4210f725da03cfc5ebc4e34a672c.tar.xz yuzu-6e10a0c1305f4210f725da03cfc5ebc4e34a672c.tar.zst yuzu-6e10a0c1305f4210f725da03cfc5ebc4e34a672c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/nvnflinger/buffer_queue_producer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp b/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp index cd0a13094..c9e9fedd1 100644 --- a/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp +++ b/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp @@ -793,6 +793,7 @@ Status BufferQueueProducer::SetPreallocatedBuffer(s32 slot, std::scoped_lock lock{core->mutex}; slots[slot] = {}; + slots[slot].fence = Fence::NoFence(); slots[slot].graphic_buffer = buffer; slots[slot].frame_number = 0; |