| 23 | using Sample::Sample; |
| 24 | |
| 25 | virtual void SampleRenderCode(nvrhi::IFramebuffer* framebuffer, nvrhi::CommandListHandle commandList, const SampleConstants& constants) override |
| 26 | { |
| 27 | if (m_ui.ActualUseRTXDIPasses()) |
| 28 | m_rtxdiPass->BeginFrame(commandList, *m_renderTargets, m_bindingLayout, m_bindingSet); |
| 29 | |
| 30 | PathTrace(framebuffer, constants); |
| 31 | |
| 32 | Denoise(framebuffer); |
| 33 | } |
| 34 | |
| 35 | virtual void CreateRTPipelines() override |
| 36 | { |
nothing calls this directly
no test coverage detected