| 731 | class IntroSample : public SampleBaseApp |
| 732 | { |
| 733 | std::unique_ptr<Sample> CreateMainRenderPass(donut::app::DeviceManager& deviceManager, const CommandLineOptions& cmdLineOptions) override |
| 734 | { |
| 735 | // For now, create the basic Sample. Later we'll use IntroRenderer |
| 736 | return std::make_unique<IntroPathTracer>(deviceManager, cmdLineOptions); |
| 737 | } |
| 738 | }; |
| 739 | |
| 740 | #ifdef _WIN32 |
nothing calls this directly
no outgoing calls
no test coverage detected