| 1412 | |
| 1413 | template <vkb::BindingType bindingType> |
| 1414 | inline void VulkanSample<bindingType>::render_impl(vkb::core::CommandBufferCpp &command_buffer) |
| 1415 | { |
| 1416 | if (render_pipeline) |
| 1417 | { |
| 1418 | render_pipeline->draw(command_buffer, render_context->get_active_frame().get_render_target()); |
| 1419 | } |
| 1420 | } |
| 1421 | |
| 1422 | template <vkb::BindingType bindingType> |
| 1423 | inline void VulkanSample<bindingType>::request_gpu_features(vkb::core::PhysicalDevice<bindingType> &gpu) |
nothing calls this directly
no test coverage detected