diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-04 21:10:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 21:10:10 +0100 |
commit | 087f52e872840df6801762426c492a25fdcd8a03 (patch) | |
tree | 52fb595630e1f9285328cc36a7e16cf422cd9730 /src/core/hle/service/nvflinger | |
parent | Merge pull request #4869 from bunnei/improve-gpu-sync (diff) | |
parent | General: Resolve a few missing initializer warnings (diff) | |
download | yuzu-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.cpp | 4 |
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(); |