| 68 | } |
| 69 | |
| 70 | VulkanCommandBuffer* VkCommandBufferManager::GetTransferCommands() |
| 71 | { |
| 72 | if (!mTransferCommands) |
| 73 | { |
| 74 | mTransferCommands = mCommandPool->createBuffer(); |
| 75 | mTransferCommands->SetDebugName("VulkanRenderDevice.mTransferCommands"); |
| 76 | mTransferCommands->begin(); |
| 77 | } |
| 78 | return mTransferCommands.get(); |
| 79 | } |
| 80 | |
| 81 | VulkanCommandBuffer* VkCommandBufferManager::GetDrawCommands() |
| 82 | { |
no test coverage detected