| 421 | } |
| 422 | |
| 423 | void ApiVulkanSample::destroy_command_buffers() |
| 424 | { |
| 425 | vkFreeCommandBuffers(get_device().get_handle(), cmd_pool, static_cast<uint32_t>(draw_cmd_buffers.size()), draw_cmd_buffers.data()); |
| 426 | } |
| 427 | |
| 428 | void ApiVulkanSample::recreate_current_command_buffer() |
| 429 | { |
nothing calls this directly
no test coverage detected