| 50 | } |
| 51 | |
| 52 | extern "C" FALCOR_API_EXPORT void registerPlugin(Falcor::PluginRegistry& registry) |
| 53 | { |
| 54 | registry.registerClass<RenderPass, DLSSPass>(); |
| 55 | ScriptBindings::registerBinding(registerDLSSPass); |
| 56 | } |
| 57 | |
| 58 | DLSSPass::DLSSPass(ref<Device> pDevice, const Properties& props) : RenderPass(pDevice) |
| 59 | { |
nothing calls this directly
no test coverage detected