diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-12-29 23:19:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-29 23:19:43 +0100 |
commit | f2c61bbe13aa2d42505901573bbb4d1f23036d91 (patch) | |
tree | 967dd114014ce4f9b0c00a417ca466126d8940fd /src/video_core | |
parent | vk_staging_buffer_pool: Add a staging pool for temporary operations (diff) | |
download | yuzu-f2c61bbe13aa2d42505901573bbb4d1f23036d91.tar yuzu-f2c61bbe13aa2d42505901573bbb4d1f23036d91.tar.gz yuzu-f2c61bbe13aa2d42505901573bbb4d1f23036d91.tar.bz2 yuzu-f2c61bbe13aa2d42505901573bbb4d1f23036d91.tar.lz yuzu-f2c61bbe13aa2d42505901573bbb4d1f23036d91.tar.xz yuzu-f2c61bbe13aa2d42505901573bbb4d1f23036d91.tar.zst yuzu-f2c61bbe13aa2d42505901573bbb4d1f23036d91.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/renderer_vulkan/vk_staging_buffer_pool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_staging_buffer_pool.h b/src/video_core/renderer_vulkan/vk_staging_buffer_pool.h index 4530749f0..02310375f 100644 --- a/src/video_core/renderer_vulkan/vk_staging_buffer_pool.h +++ b/src/video_core/renderer_vulkan/vk_staging_buffer_pool.h @@ -46,7 +46,7 @@ private: std::unique_ptr<VKBuffer> buffer; VKFenceWatch watch; - u64 last_epoch; + u64 last_epoch = 0; }; struct StagingBuffers final { |