summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-04 21:10:10 +0100
committerGitHub <noreply@github.com>2020-11-04 21:10:10 +0100
commit087f52e872840df6801762426c492a25fdcd8a03 (patch)
tree52fb595630e1f9285328cc36a7e16cf422cd9730 /src/core/hle/service/nvflinger
parentMerge pull request #4869 from bunnei/improve-gpu-sync (diff)
parentGeneral: Resolve a few missing initializer warnings (diff)
downloadyuzu-087f52e872840df6801762426c492a25fdcd8a03.tar
yuzu-087f52e872840df6801762426c492a25fdcd8a03.tar.gz
yuzu-087f52e872840df6801762426c492a25fdcd8a03.tar.bz2
yuzu-087f52e872840df6801762426c492a25fdcd8a03.tar.lz
yuzu-087f52e872840df6801762426c492a25fdcd8a03.tar.xz
yuzu-087f52e872840df6801762426c492a25fdcd8a03.tar.zst
yuzu-087f52e872840df6801762426c492a25fdcd8a03.zip
Diffstat (limited to 'src/core/hle/service/nvflinger')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.cpp b/src/core/hle/service/nvflinger/buffer_queue.cpp
index 4f1e210b1..b89a2d41b 100644
--- a/src/core/hle/service/nvflinger/buffer_queue.cpp
+++ b/src/core/hle/service/nvflinger/buffer_queue.cpp
@@ -29,6 +29,10 @@ void BufferQueue::SetPreallocatedBuffer(u32 slot, const IGBPBuffer& igbp_buffer)
.slot = slot,
.status = Buffer::Status::Free,
.igbp_buffer = igbp_buffer,
+ .transform = {},
+ .crop_rect = {},
+ .swap_interval = 0,
+ .multi_fence = {},
});
buffer_wait_event.writable->Signal();