Skip to content
Permalink
Browse files
Merge pull request #11238 from K0bin/zero-descriptor-size
VideoBackends:Vulkan: Fix 0 size descriptor pools
  • Loading branch information
AdmiralCurtiss committed Oct 31, 2022
2 parents d3718b1 + f5fecaf commit 4955af5
Showing 1 changed file with 1 addition and 1 deletion.
@@ -161,7 +161,7 @@ class CommandBufferManager
Common::Flag m_last_present_failed;
VkResult m_last_present_result = VK_SUCCESS;
bool m_use_threaded_submission = false;
u32 m_descriptor_set_count = 0;
u32 m_descriptor_set_count = DESCRIPTOR_SETS_PER_POOL;
};

extern std::unique_ptr<CommandBufferManager> g_command_buffer_mgr;

0 comments on commit 4955af5

Please sign in to comment.