| 489 | } |
| 490 | |
| 491 | void OnDrawFrame() override |
| 492 | { |
| 493 | UpdateScene(); |
| 494 | |
| 495 | commands->Begin(); |
| 496 | { |
| 497 | RenderScene(); |
| 498 | } |
| 499 | commands->End(); |
| 500 | |
| 501 | commandQueue->Submit(*commands); |
| 502 | } |
| 503 | |
| 504 | }; |
| 505 |
nothing calls this directly
no test coverage detected