renderer_vulkan: allow up to 7 swapchain images

This commit is contained in:
Liam 2023-12-16 18:57:23 -05:00
parent b020c5ee5e
commit 273b4b9576
4 changed files with 6 additions and 6 deletions

View file

@ -474,7 +474,7 @@ private:
};
Common::LeastRecentlyUsedCache<LRUItemParams> lru_cache;
static constexpr size_t TICKS_TO_DESTROY = 6;
static constexpr size_t TICKS_TO_DESTROY = 8;
DelayedDestructionRing<Image, TICKS_TO_DESTROY> sentenced_images;
DelayedDestructionRing<ImageView, TICKS_TO_DESTROY> sentenced_image_view;
DelayedDestructionRing<Framebuffer, TICKS_TO_DESTROY> sentenced_framebuffers;