| 428 | } |
| 429 | |
| 430 | void IntroPathTracer::CopyDepthForNextFrame(nvrhi::CommandListHandle commandList) |
| 431 | { |
| 432 | if (!m_prevDepth || !m_renderTargets->Depth) |
| 433 | return; |
| 434 | |
| 435 | ScopedPerfMarker perfMarker("Depth Copy", commandList); |
| 436 | commandList->copyTexture(m_prevDepth, nvrhi::TextureSlice(), m_renderTargets->Depth, nvrhi::TextureSlice()); |
| 437 | } |
| 438 | |
| 439 | void IntroPathTracer::PopulateGBuffer(nvrhi::CommandListHandle commandList) |
| 440 | { |
nothing calls this directly
no outgoing calls
no test coverage detected