Browse Source
vk_staging_buffer_pool: Initialize last epoch to zero
pull/15/merge
Rodrigo Locatti
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/renderer_vulkan/vk_staging_buffer_pool.h
|
|
@ -46,7 +46,7 @@ private: |
|
|
|
|
|
|
|
|
std::unique_ptr<VKBuffer> buffer; |
|
|
std::unique_ptr<VKBuffer> buffer; |
|
|
VKFenceWatch watch; |
|
|
VKFenceWatch watch; |
|
|
u64 last_epoch; |
|
|
|
|
|
|
|
|
u64 last_epoch = 0; |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
struct StagingBuffers final { |
|
|
struct StagingBuffers final { |
|
|
|