| 376 | } |
| 377 | |
| 378 | void HPPInstancing::draw() |
| 379 | { |
| 380 | HPPApiVulkanSample::prepare_frame(); |
| 381 | |
| 382 | // Command buffer to be submitted to the queue |
| 383 | submit_info.setCommandBuffers(draw_cmd_buffers[current_buffer]); |
| 384 | |
| 385 | // Submit to queue |
| 386 | queue.submit(submit_info); |
| 387 | |
| 388 | HPPApiVulkanSample::submit_frame(); |
| 389 | } |
| 390 | |
| 391 | void HPPInstancing::load_assets() |
| 392 | { |
no test coverage detected