Fix code style

This commit is contained in:
Wojtek Figat
2020-12-22 12:57:00 +01:00
parent 4665e8fbdb
commit 16cd75d179
10 changed files with 17 additions and 108 deletions

View File

@@ -24,14 +24,12 @@ void CmdBufferVulkan::Begin()
RenderToolsVulkan::ZeroStruct(beginInfo, VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO);
beginInfo.flags = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT;
VALIDATE_VULKAN_RESULT(vkBeginCommandBuffer(_commandBufferHandle, &beginInfo));
#if VULKAN_USE_DESCRIPTOR_POOL_MANAGER
// Acquire a descriptor pool set on
if (_descriptorPoolSetContainer == nullptr)
{
AcquirePoolSet();
}
#endif
_state = State::IsInsideBegin;