| 581 | } |
| 582 | |
| 583 | void Scene::FinishedLoading(uint32_t frameIndex) |
| 584 | { |
| 585 | nvrhi::CommandListHandle commandList = m_Device->createCommandList(); |
| 586 | commandList->open(); |
| 587 | |
| 588 | CreateMeshBuffers(commandList); |
| 589 | Refresh(commandList, frameIndex); |
| 590 | |
| 591 | commandList->close(); |
| 592 | m_Device->executeCommandList(commandList); |
| 593 | } |
| 594 | |
| 595 | void Scene::RefreshSceneGraph(uint32_t frameIndex) |
| 596 | { |
nothing calls this directly
no outgoing calls
no test coverage detected