| 118 | } |
| 119 | |
| 120 | void TressFXSample::DrawSDF() |
| 121 | { |
| 122 | #if ENABLE_MARCHING_CUBES |
| 123 | EI_CommandContext& commandList = GetDevice()->GetCurrentCommandContext(); |
| 124 | |
| 125 | for (size_t i = 0; i < m_activeScene.collisionMeshes.size(); i++) |
| 126 | m_activeScene.collisionMeshes[i]->DrawIsoSurface(commandList); |
| 127 | #endif |
| 128 | } |
| 129 | |
| 130 | void TressFXSample::InitializeLayouts() |
| 131 | { |
nothing calls this directly
no test coverage detected