| 11 | namespace Vulkan { |
| 12 | |
| 13 | CommandBuffer::CommandBuffer(VkCommandBuffer commandBuffer) |
| 14 | { |
| 15 | handle = commandBuffer; |
| 16 | } |
| 17 | |
| 18 | Result CommandBuffer::begin(VkCommandBufferUsageFlags flags, const VkCommandBufferInheritanceInfo *inheritanceInfo) const |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected