| 624 | } |
| 625 | |
| 626 | void HPPApiVulkanSample::create_command_pool() |
| 627 | { |
| 628 | uint32_t queue_family_index = get_device().get_queue_by_flags(vk::QueueFlagBits::eGraphics | vk::QueueFlagBits::eCompute, 0).get_family_index(); |
| 629 | vk::CommandPoolCreateInfo command_pool_info{.queueFamilyIndex = queue_family_index}; |
| 630 | cmd_pool = get_device().get_handle().createCommandPool(command_pool_info); |
| 631 | } |
| 632 | |
| 633 | void HPPApiVulkanSample::setup_depth_stencil() |
| 634 | { |
nothing calls this directly
no test coverage detected