Browse Source
Merge pull request #5989 from ReinUsesLisp/cmdpool
vk_command_pool: Reduce the command pool size from 4096 to 4
pull/15/merge
bunnei
5 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_command_pool.cpp
|
|
@ -10,7 +10,7 @@ |
|
|
|
|
|
|
|
|
namespace Vulkan { |
|
|
namespace Vulkan { |
|
|
|
|
|
|
|
|
constexpr size_t COMMAND_BUFFER_POOL_SIZE = 0x1000; |
|
|
|
|
|
|
|
|
constexpr size_t COMMAND_BUFFER_POOL_SIZE = 4; |
|
|
|
|
|
|
|
|
struct CommandPool::Pool { |
|
|
struct CommandPool::Pool { |
|
|
vk::CommandPool handle; |
|
|
vk::CommandPool handle; |
|
|
|