Просмотр исходного кода

vk_staging_buffer_pool: Silence unused constant warning

ReinUsesLisp 6 лет назад
Родитель
Сommit
b6b2e31e5e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/video_core/renderer_vulkan/vk_staging_buffer_pool.cpp

+ 1 - 1
src/video_core/renderer_vulkan/vk_staging_buffer_pool.cpp

@@ -100,7 +100,6 @@ void VKStagingBufferPool::ReleaseCache(bool host_visible) {
 }
 
 u64 VKStagingBufferPool::ReleaseLevel(StagingBuffersCache& cache, std::size_t log2) {
-    static constexpr u64 epochs_to_destroy = 180;
     static constexpr std::size_t deletions_per_tick = 16;
 
     auto& staging = cache[log2];
@@ -108,6 +107,7 @@ u64 VKStagingBufferPool::ReleaseLevel(StagingBuffersCache& cache, std::size_t lo
     const std::size_t old_size = entries.size();
 
     const auto is_deleteable = [this](const auto& entry) {
+        static constexpr u64 epochs_to_destroy = 180;
         return entry.last_epoch + epochs_to_destroy < epoch && !entry.watch.IsUsed();
     };
     const std::size_t begin_offset = staging.delete_index;