├── .gitignore ├── .gitmodules ├── CLA.txt ├── CMakeLists.txt ├── Docs ├── r-title.png └── r-ui.png ├── External └── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── Rtxpt ├── AccelerationStructureUtil.h ├── AccumulationPass.cpp ├── AccumulationPass.h ├── AccumulationPass.hlsl ├── CMakeLists.txt ├── ComputePass.cpp ├── ComputePass.h ├── DebugLines.hlsl ├── ExportVisibilityBuffer.hlsl ├── ExtendedScene.cpp ├── ExtendedScene.h ├── GPUSort │ ├── FFX_ParallelSort.h │ ├── GPUSort.cpp │ ├── GPUSort.h │ └── GPUSort.hlsl ├── Lighting │ ├── Distant │ │ ├── BC6UCompress.hlsl │ │ ├── EnvMapBaker.cpp │ │ ├── EnvMapBaker.h │ │ ├── EnvMapBaker.hlsl │ │ ├── EnvMapImportanceSamplingBaker.cpp │ │ ├── EnvMapImportanceSamplingBaker.h │ │ ├── EnvMapImportanceSamplingBaker.hlsl │ │ ├── SampleProceduralSky.cpp │ │ ├── SampleProceduralSky.h │ │ ├── SampleProceduralSky.hlsli │ │ └── precomputed_sky.hlsli │ ├── LightsBaker.cpp │ ├── LightsBaker.h │ └── LightsBaker.hlsl ├── LocalConfig.cpp ├── LocalConfig.h ├── Materials │ ├── MaterialsBaker.cpp │ └── MaterialsBaker.h ├── Misc │ ├── CommandLine.cpp │ ├── CommandLine.h │ ├── Korgi.cpp │ ├── Korgi.h │ └── picosha2.h ├── NRD │ ├── DenoiserNRD.hlsli │ ├── NrdConfig.cpp │ ├── NrdConfig.h │ ├── NrdIntegration.cpp │ └── NrdIntegration.h ├── OpacityMicroMap │ ├── OmmBaker.cpp │ ├── OmmBaker.h │ ├── OmmBuildQueue.cpp │ └── OmmBuildQueue.h ├── PTPipelineBaker.cpp ├── PTPipelineBaker.h ├── PostProcess.cpp ├── PostProcess.h ├── PostProcess.hlsl ├── RTXDI │ ├── DIFinalShading.hlsl │ ├── FusedDIGIFinalShading.hlsl │ ├── GBufferHelpers.hlsli │ ├── GIFinalShading.hlsl │ ├── GISpatialResampling.hlsl │ ├── GITemporalResampling.hlsl │ ├── GenerateInitialSamples.hlsl │ ├── GeneratePdfMipsPass.cpp │ ├── GeneratePdfMipsPass.h │ ├── HelperFunctions.hlsli │ ├── PolymorphicLightRTXDI.hlsli │ ├── PrepareLights.hlsl │ ├── PrepareLightsPass.cpp │ ├── PrepareLightsPass.h │ ├── PreprocessEnvironmentMap.hlsl │ ├── PresampleEnvironmentMap.hlsl │ ├── PresampleLights.hlsl │ ├── PresampleReGIR.hlsl │ ├── RayTracingPass.cpp │ ├── RayTracingPass.h │ ├── RtxdiApplicationBridge.hlsli │ ├── RtxdiApplicationSettings.cpp │ ├── RtxdiApplicationSettings.h │ ├── RtxdiPass.cpp │ ├── RtxdiPass.h │ ├── RtxdiResources.cpp │ ├── RtxdiResources.h │ ├── SetSurfaceData.hlsli │ ├── ShaderParameters.h │ ├── SpatialResampling.hlsl │ ├── SpatioTemporalResampling.hlsl │ ├── SurfaceData.hlsli │ └── TemporalResampling.hlsl ├── RenderTargets.cpp ├── RenderTargets.h ├── Sample.cpp ├── Sample.h ├── SampleCommon.cpp ├── SampleCommon.h ├── SampleGame │ ├── GameMisc.cpp │ ├── GameMisc.h │ ├── GameModel.cpp │ ├── GameModel.h │ ├── GamePropComponent.cpp │ ├── GamePropComponent.h │ ├── GameProps.cpp │ ├── GameProps.h │ ├── GameScene.cpp │ └── GameScene.h ├── SampleUI.cpp ├── SampleUI.h ├── ShaderDebug.cpp ├── ShaderDebug.h ├── Shaders │ ├── Bindings │ │ ├── BindingDataTypes.hlsli │ │ ├── LightingBindings.hlsli │ │ ├── ReSTIRBindings.hlsli │ │ ├── SamplerBindings.hlsli │ │ ├── SceneBindings.hlsli │ │ └── ShaderResourceBindings.hlsli │ ├── Misc │ │ ├── OmmDebug.hlsli │ │ └── OmmGeometryDebugData.hlsli │ ├── PathTracer │ │ ├── Config.h │ │ ├── Lighting │ │ │ ├── EnvMap.hlsli │ │ │ ├── LightSampler.hlsli │ │ │ ├── LightShaping.hlsli │ │ │ ├── LightingAlgorithms.hlsli │ │ │ ├── LightingConfig.h │ │ │ ├── LightingTypes.h │ │ │ ├── PolymorphicLight.h │ │ │ ├── PolymorphicLight.hlsli │ │ │ └── PolymorphicLightPTConfig.h │ │ ├── Materials │ │ │ ├── MaterialPT.h │ │ │ └── MaterialTypes.hlsli │ │ ├── PathPayload.hlsli │ │ ├── PathState.hlsli │ │ ├── PathTracer.hlsli │ │ ├── PathTracerDebug.hlsli │ │ ├── PathTracerHelpers.hlsli │ │ ├── PathTracerNEE.hlsli │ │ ├── PathTracerNestedDielectrics.hlsli │ │ ├── PathTracerShared.h │ │ ├── PathTracerStablePlanes.hlsli │ │ ├── PathTracerTypes.hlsli │ │ ├── Rendering │ │ │ ├── Materials │ │ │ │ ├── BxDF.hlsli │ │ │ │ ├── BxDFConfig.hlsli │ │ │ │ ├── Fresnel.hlsli │ │ │ │ ├── IBSDF.hlsli │ │ │ │ ├── InteriorList.hlsli │ │ │ │ ├── LobeType.hlsli │ │ │ │ ├── Microfacet.hlsli │ │ │ │ ├── StandardBSDF.hlsli │ │ │ │ └── TexLODHelpers.hlsli │ │ │ └── Volumes │ │ │ │ └── HomogeneousVolumeSampler.hlsli │ │ ├── Scene │ │ │ ├── HitInfo.hlsli │ │ │ ├── HitInfoType.hlsli │ │ │ ├── Material │ │ │ │ ├── HomogeneousVolumeData.hlsli │ │ │ │ ├── MaterialData.hlsli │ │ │ │ ├── ShadingUtils.hlsli │ │ │ │ └── TextureSampler.hlsli │ │ │ ├── SceneDefines.hlsli │ │ │ ├── SceneTypes.hlsli │ │ │ └── ShadingData.hlsli │ │ ├── StablePlanes.hlsli │ │ └── Utils │ │ │ ├── ColorHelpers.hlsli │ │ │ ├── Geometry.hlsli │ │ │ ├── Math │ │ │ ├── BitTricks.hlsli │ │ │ ├── FormatConversion.hlsli │ │ │ ├── HashUtils.hlsli │ │ │ ├── MathConstants.hlsli │ │ │ ├── MathHelpers.hlsli │ │ │ ├── PackedFormats.hlsli │ │ │ ├── Quaternion.hlsli │ │ │ └── Ray.hlsli │ │ │ ├── NoiseAndSequences.hlsli │ │ │ ├── Packing.hlsli │ │ │ ├── SampleGenerators.hlsli │ │ │ ├── Sampling │ │ │ ├── Pseudorandom │ │ │ │ ├── LCG.hlsli │ │ │ │ ├── SplitMix64.hlsli │ │ │ │ ├── Xorshift32.hlsli │ │ │ │ └── Xoshiro.hlsli │ │ │ └── Sampling.hlsli │ │ │ ├── StatelessSampleGenerators.hlsli │ │ │ └── Utils.hlsli │ ├── PathTracerBridge.hlsli │ ├── PathTracerBridgeDonut.hlsli │ ├── PathTracerSample.hlsl │ ├── SampleConstantBuffer.h │ ├── ShaderDebug.hlsli │ ├── SubInstanceData.h │ └── TestRaygenPP.hlsl ├── ToneMapper │ ├── ColorUtils.h │ ├── ToneMapperParams.hlsli │ ├── ToneMapping.hlsl │ ├── ToneMapping.ps.hlsli │ ├── ToneMappingPasses.cpp │ ├── ToneMappingPasses.h │ ├── ToneMapping_cb.h │ └── luminance_ps.hlsl ├── ZoomTool.cpp ├── ZoomTool.h ├── ZoomTool.hlsl └── shaders.cfg └── Support ├── ImageMagick ├── LICENSE.txt ├── NOTICE.txt └── magick.exe ├── denoiser_OptiX ├── Denoiser.exe ├── Half.dll ├── Iex-2_2.dll ├── IexMath-2_2.dll ├── IlmImf-2_2.dll ├── IlmImfUtil-2_2.dll ├── IlmThread-2_2.dll ├── Imath-2_2.dll ├── LICENSE ├── OpenImageIO.dll ├── OpenImageIO_Util.dll ├── README.md ├── boost_atomic-vc141-mt-x64-1_67.dll ├── boost_chrono-vc141-mt-x64-1_67.dll ├── boost_container-vc141-mt-x64-1_67.dll ├── boost_context-vc141-mt-x64-1_67.dll ├── boost_coroutine-vc141-mt-x64-1_67.dll ├── boost_date_time-vc141-mt-x64-1_67.dll ├── boost_filesystem-vc141-mt-x64-1_67.dll ├── boost_math_c99-vc141-mt-x64-1_67.dll ├── boost_math_c99f-vc141-mt-x64-1_67.dll ├── boost_math_c99l-vc141-mt-x64-1_67.dll ├── boost_math_tr1-vc141-mt-x64-1_67.dll ├── boost_math_tr1f-vc141-mt-x64-1_67.dll ├── boost_math_tr1l-vc141-mt-x64-1_67.dll ├── boost_random-vc141-mt-x64-1_67.dll ├── boost_regex-vc141-mt-x64-1_67.dll ├── boost_system-vc141-mt-x64-1_67.dll ├── boost_thread-vc141-mt-x64-1_67.dll ├── jpeg62.dll ├── libeay32.dll ├── libpng16.dll ├── lzma.dll ├── optix.6.5.0.dll ├── ssleay32.dll ├── tiff.dll ├── tiffxx.dll ├── turbojpeg.dll └── zlib1.dll └── tests ├── _1_render.ps1 ├── _2_compare.ps1 ├── _run.ps1 ├── generate_golden.ps1 ├── golden_image ├── test.kitchen.realtime.1.bmp ├── test.kitchen.realtime.2.bmp ├── test.kitchen.realtime.3.bmp ├── test.kitchen.realtime.4.bmp ├── test.kitchen.realtime.4096.bmp ├── test.kitchen.reference.1.bmp ├── test.kitchen.reference.2.bmp ├── test.kitchen.reference.3.bmp ├── test.kitchen.reference.4.bmp └── test.kitchen.reference.4096.bmp ├── run_psnr.ps1 ├── run_tests.ps1 └── tests.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/.gitmodules -------------------------------------------------------------------------------- /CLA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/CLA.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Docs/r-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Docs/r-title.png -------------------------------------------------------------------------------- /Docs/r-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Docs/r-ui.png -------------------------------------------------------------------------------- /External/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/External/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/README.md -------------------------------------------------------------------------------- /Rtxpt/AccelerationStructureUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/AccelerationStructureUtil.h -------------------------------------------------------------------------------- /Rtxpt/AccumulationPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/AccumulationPass.cpp -------------------------------------------------------------------------------- /Rtxpt/AccumulationPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/AccumulationPass.h -------------------------------------------------------------------------------- /Rtxpt/AccumulationPass.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/AccumulationPass.hlsl -------------------------------------------------------------------------------- /Rtxpt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/CMakeLists.txt -------------------------------------------------------------------------------- /Rtxpt/ComputePass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ComputePass.cpp -------------------------------------------------------------------------------- /Rtxpt/ComputePass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ComputePass.h -------------------------------------------------------------------------------- /Rtxpt/DebugLines.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/DebugLines.hlsl -------------------------------------------------------------------------------- /Rtxpt/ExportVisibilityBuffer.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ExportVisibilityBuffer.hlsl -------------------------------------------------------------------------------- /Rtxpt/ExtendedScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ExtendedScene.cpp -------------------------------------------------------------------------------- /Rtxpt/ExtendedScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ExtendedScene.h -------------------------------------------------------------------------------- /Rtxpt/GPUSort/FFX_ParallelSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/GPUSort/FFX_ParallelSort.h -------------------------------------------------------------------------------- /Rtxpt/GPUSort/GPUSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/GPUSort/GPUSort.cpp -------------------------------------------------------------------------------- /Rtxpt/GPUSort/GPUSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/GPUSort/GPUSort.h -------------------------------------------------------------------------------- /Rtxpt/GPUSort/GPUSort.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/GPUSort/GPUSort.hlsl -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/BC6UCompress.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/BC6UCompress.hlsl -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/EnvMapBaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/EnvMapBaker.cpp -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/EnvMapBaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/EnvMapBaker.h -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/EnvMapBaker.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/EnvMapBaker.hlsl -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/EnvMapImportanceSamplingBaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/EnvMapImportanceSamplingBaker.cpp -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/EnvMapImportanceSamplingBaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/EnvMapImportanceSamplingBaker.h -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/EnvMapImportanceSamplingBaker.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/EnvMapImportanceSamplingBaker.hlsl -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/SampleProceduralSky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/SampleProceduralSky.cpp -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/SampleProceduralSky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/SampleProceduralSky.h -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/SampleProceduralSky.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/SampleProceduralSky.hlsli -------------------------------------------------------------------------------- /Rtxpt/Lighting/Distant/precomputed_sky.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/Distant/precomputed_sky.hlsli -------------------------------------------------------------------------------- /Rtxpt/Lighting/LightsBaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/LightsBaker.cpp -------------------------------------------------------------------------------- /Rtxpt/Lighting/LightsBaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/LightsBaker.h -------------------------------------------------------------------------------- /Rtxpt/Lighting/LightsBaker.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Lighting/LightsBaker.hlsl -------------------------------------------------------------------------------- /Rtxpt/LocalConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/LocalConfig.cpp -------------------------------------------------------------------------------- /Rtxpt/LocalConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/LocalConfig.h -------------------------------------------------------------------------------- /Rtxpt/Materials/MaterialsBaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Materials/MaterialsBaker.cpp -------------------------------------------------------------------------------- /Rtxpt/Materials/MaterialsBaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Materials/MaterialsBaker.h -------------------------------------------------------------------------------- /Rtxpt/Misc/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Misc/CommandLine.cpp -------------------------------------------------------------------------------- /Rtxpt/Misc/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Misc/CommandLine.h -------------------------------------------------------------------------------- /Rtxpt/Misc/Korgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Misc/Korgi.cpp -------------------------------------------------------------------------------- /Rtxpt/Misc/Korgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Misc/Korgi.h -------------------------------------------------------------------------------- /Rtxpt/Misc/picosha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Misc/picosha2.h -------------------------------------------------------------------------------- /Rtxpt/NRD/DenoiserNRD.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/NRD/DenoiserNRD.hlsli -------------------------------------------------------------------------------- /Rtxpt/NRD/NrdConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/NRD/NrdConfig.cpp -------------------------------------------------------------------------------- /Rtxpt/NRD/NrdConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/NRD/NrdConfig.h -------------------------------------------------------------------------------- /Rtxpt/NRD/NrdIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/NRD/NrdIntegration.cpp -------------------------------------------------------------------------------- /Rtxpt/NRD/NrdIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/NRD/NrdIntegration.h -------------------------------------------------------------------------------- /Rtxpt/OpacityMicroMap/OmmBaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/OpacityMicroMap/OmmBaker.cpp -------------------------------------------------------------------------------- /Rtxpt/OpacityMicroMap/OmmBaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/OpacityMicroMap/OmmBaker.h -------------------------------------------------------------------------------- /Rtxpt/OpacityMicroMap/OmmBuildQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/OpacityMicroMap/OmmBuildQueue.cpp -------------------------------------------------------------------------------- /Rtxpt/OpacityMicroMap/OmmBuildQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/OpacityMicroMap/OmmBuildQueue.h -------------------------------------------------------------------------------- /Rtxpt/PTPipelineBaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/PTPipelineBaker.cpp -------------------------------------------------------------------------------- /Rtxpt/PTPipelineBaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/PTPipelineBaker.h -------------------------------------------------------------------------------- /Rtxpt/PostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/PostProcess.cpp -------------------------------------------------------------------------------- /Rtxpt/PostProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/PostProcess.h -------------------------------------------------------------------------------- /Rtxpt/PostProcess.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/PostProcess.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/DIFinalShading.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/DIFinalShading.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/FusedDIGIFinalShading.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/FusedDIGIFinalShading.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/GBufferHelpers.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/GBufferHelpers.hlsli -------------------------------------------------------------------------------- /Rtxpt/RTXDI/GIFinalShading.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/GIFinalShading.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/GISpatialResampling.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/GISpatialResampling.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/GITemporalResampling.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/GITemporalResampling.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/GenerateInitialSamples.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/GenerateInitialSamples.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/GeneratePdfMipsPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/GeneratePdfMipsPass.cpp -------------------------------------------------------------------------------- /Rtxpt/RTXDI/GeneratePdfMipsPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/GeneratePdfMipsPass.h -------------------------------------------------------------------------------- /Rtxpt/RTXDI/HelperFunctions.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/HelperFunctions.hlsli -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PolymorphicLightRTXDI.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PolymorphicLightRTXDI.hlsli -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PrepareLights.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PrepareLights.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PrepareLightsPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PrepareLightsPass.cpp -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PrepareLightsPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PrepareLightsPass.h -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PreprocessEnvironmentMap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PreprocessEnvironmentMap.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PresampleEnvironmentMap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PresampleEnvironmentMap.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PresampleLights.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PresampleLights.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/PresampleReGIR.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/PresampleReGIR.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RayTracingPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RayTracingPass.cpp -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RayTracingPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RayTracingPass.h -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RtxdiApplicationBridge.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RtxdiApplicationBridge.hlsli -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RtxdiApplicationSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RtxdiApplicationSettings.cpp -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RtxdiApplicationSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RtxdiApplicationSettings.h -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RtxdiPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RtxdiPass.cpp -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RtxdiPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RtxdiPass.h -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RtxdiResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RtxdiResources.cpp -------------------------------------------------------------------------------- /Rtxpt/RTXDI/RtxdiResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/RtxdiResources.h -------------------------------------------------------------------------------- /Rtxpt/RTXDI/SetSurfaceData.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/SetSurfaceData.hlsli -------------------------------------------------------------------------------- /Rtxpt/RTXDI/ShaderParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/ShaderParameters.h -------------------------------------------------------------------------------- /Rtxpt/RTXDI/SpatialResampling.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/SpatialResampling.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/SpatioTemporalResampling.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/SpatioTemporalResampling.hlsl -------------------------------------------------------------------------------- /Rtxpt/RTXDI/SurfaceData.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/SurfaceData.hlsli -------------------------------------------------------------------------------- /Rtxpt/RTXDI/TemporalResampling.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RTXDI/TemporalResampling.hlsl -------------------------------------------------------------------------------- /Rtxpt/RenderTargets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RenderTargets.cpp -------------------------------------------------------------------------------- /Rtxpt/RenderTargets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/RenderTargets.h -------------------------------------------------------------------------------- /Rtxpt/Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Sample.cpp -------------------------------------------------------------------------------- /Rtxpt/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Sample.h -------------------------------------------------------------------------------- /Rtxpt/SampleCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleCommon.cpp -------------------------------------------------------------------------------- /Rtxpt/SampleCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleCommon.h -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameMisc.cpp -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameMisc.h -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameModel.cpp -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameModel.h -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GamePropComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GamePropComponent.cpp -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GamePropComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GamePropComponent.h -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameProps.cpp -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameProps.h -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameScene.cpp -------------------------------------------------------------------------------- /Rtxpt/SampleGame/GameScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleGame/GameScene.h -------------------------------------------------------------------------------- /Rtxpt/SampleUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleUI.cpp -------------------------------------------------------------------------------- /Rtxpt/SampleUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/SampleUI.h -------------------------------------------------------------------------------- /Rtxpt/ShaderDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ShaderDebug.cpp -------------------------------------------------------------------------------- /Rtxpt/ShaderDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ShaderDebug.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/Bindings/BindingDataTypes.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Bindings/BindingDataTypes.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/Bindings/LightingBindings.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Bindings/LightingBindings.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/Bindings/ReSTIRBindings.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Bindings/ReSTIRBindings.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/Bindings/SamplerBindings.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Bindings/SamplerBindings.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/Bindings/SceneBindings.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Bindings/SceneBindings.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/Bindings/ShaderResourceBindings.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Bindings/ShaderResourceBindings.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/Misc/OmmDebug.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Misc/OmmDebug.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/Misc/OmmGeometryDebugData.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/Misc/OmmGeometryDebugData.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Config.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/EnvMap.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/EnvMap.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/LightSampler.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/LightSampler.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/LightShaping.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/LightShaping.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/LightingAlgorithms.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/LightingAlgorithms.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/LightingConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/LightingConfig.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/LightingTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/LightingTypes.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/PolymorphicLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/PolymorphicLight.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/PolymorphicLight.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/PolymorphicLight.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Lighting/PolymorphicLightPTConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Lighting/PolymorphicLightPTConfig.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Materials/MaterialPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Materials/MaterialPT.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Materials/MaterialTypes.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Materials/MaterialTypes.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathPayload.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathPayload.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathState.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathState.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracer.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracer.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracerDebug.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracerDebug.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracerHelpers.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracerHelpers.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracerNEE.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracerNEE.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracerNestedDielectrics.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracerNestedDielectrics.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracerShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracerShared.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracerStablePlanes.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracerStablePlanes.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/PathTracerTypes.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/PathTracerTypes.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/BxDF.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/BxDF.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/BxDFConfig.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/BxDFConfig.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/Fresnel.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/Fresnel.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/IBSDF.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/IBSDF.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/InteriorList.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/InteriorList.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/LobeType.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/LobeType.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/Microfacet.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/Microfacet.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/StandardBSDF.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/StandardBSDF.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Materials/TexLODHelpers.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Materials/TexLODHelpers.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Rendering/Volumes/HomogeneousVolumeSampler.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Rendering/Volumes/HomogeneousVolumeSampler.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/HitInfo.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/HitInfo.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/HitInfoType.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/HitInfoType.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/Material/HomogeneousVolumeData.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/Material/HomogeneousVolumeData.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/Material/MaterialData.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/Material/MaterialData.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/Material/ShadingUtils.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/Material/ShadingUtils.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/Material/TextureSampler.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/Material/TextureSampler.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/SceneDefines.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/SceneDefines.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/SceneTypes.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/SceneTypes.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Scene/ShadingData.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Scene/ShadingData.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/StablePlanes.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/StablePlanes.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/ColorHelpers.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/ColorHelpers.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Geometry.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Geometry.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/BitTricks.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/BitTricks.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/FormatConversion.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/FormatConversion.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/HashUtils.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/HashUtils.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/MathConstants.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/MathConstants.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/MathHelpers.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/MathHelpers.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/PackedFormats.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/PackedFormats.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/Quaternion.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/Quaternion.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Math/Ray.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Math/Ray.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/NoiseAndSequences.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/NoiseAndSequences.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Packing.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Packing.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/SampleGenerators.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/SampleGenerators.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/LCG.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/LCG.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/SplitMix64.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/SplitMix64.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/Xorshift32.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/Xorshift32.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/Xoshiro.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Sampling/Pseudorandom/Xoshiro.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Sampling/Sampling.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Sampling/Sampling.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/StatelessSampleGenerators.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/StatelessSampleGenerators.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracer/Utils/Utils.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracer/Utils/Utils.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracerBridge.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracerBridge.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracerBridgeDonut.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracerBridgeDonut.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/PathTracerSample.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/PathTracerSample.hlsl -------------------------------------------------------------------------------- /Rtxpt/Shaders/SampleConstantBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/SampleConstantBuffer.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/ShaderDebug.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/ShaderDebug.hlsli -------------------------------------------------------------------------------- /Rtxpt/Shaders/SubInstanceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/SubInstanceData.h -------------------------------------------------------------------------------- /Rtxpt/Shaders/TestRaygenPP.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/Shaders/TestRaygenPP.hlsl -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/ColorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/ColorUtils.h -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/ToneMapperParams.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/ToneMapperParams.hlsli -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/ToneMapping.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/ToneMapping.hlsl -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/ToneMapping.ps.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/ToneMapping.ps.hlsli -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/ToneMappingPasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/ToneMappingPasses.cpp -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/ToneMappingPasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/ToneMappingPasses.h -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/ToneMapping_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/ToneMapping_cb.h -------------------------------------------------------------------------------- /Rtxpt/ToneMapper/luminance_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ToneMapper/luminance_ps.hlsl -------------------------------------------------------------------------------- /Rtxpt/ZoomTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ZoomTool.cpp -------------------------------------------------------------------------------- /Rtxpt/ZoomTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ZoomTool.h -------------------------------------------------------------------------------- /Rtxpt/ZoomTool.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/ZoomTool.hlsl -------------------------------------------------------------------------------- /Rtxpt/shaders.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Rtxpt/shaders.cfg -------------------------------------------------------------------------------- /Support/ImageMagick/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/ImageMagick/LICENSE.txt -------------------------------------------------------------------------------- /Support/ImageMagick/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/ImageMagick/NOTICE.txt -------------------------------------------------------------------------------- /Support/ImageMagick/magick.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/ImageMagick/magick.exe -------------------------------------------------------------------------------- /Support/denoiser_OptiX/Denoiser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/Denoiser.exe -------------------------------------------------------------------------------- /Support/denoiser_OptiX/Half.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/Half.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/Iex-2_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/Iex-2_2.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/IexMath-2_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/IexMath-2_2.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/IlmImf-2_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/IlmImf-2_2.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/IlmImfUtil-2_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/IlmImfUtil-2_2.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/IlmThread-2_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/IlmThread-2_2.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/Imath-2_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/Imath-2_2.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/LICENSE -------------------------------------------------------------------------------- /Support/denoiser_OptiX/OpenImageIO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/OpenImageIO.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/OpenImageIO_Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/OpenImageIO_Util.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/README.md -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_atomic-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_atomic-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_chrono-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_chrono-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_container-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_container-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_context-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_context-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_coroutine-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_coroutine-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_date_time-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_date_time-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_filesystem-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_filesystem-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_math_c99-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_math_c99-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_math_c99f-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_math_c99f-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_math_c99l-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_math_c99l-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_math_tr1-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_math_tr1-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_math_tr1f-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_math_tr1f-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_math_tr1l-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_math_tr1l-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_random-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_random-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_regex-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_regex-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_system-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_system-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/boost_thread-vc141-mt-x64-1_67.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/boost_thread-vc141-mt-x64-1_67.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/jpeg62.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/libeay32.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/libpng16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/libpng16.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/lzma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/lzma.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/optix.6.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/optix.6.5.0.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/ssleay32.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/tiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/tiff.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/tiffxx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/tiffxx.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/turbojpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/turbojpeg.dll -------------------------------------------------------------------------------- /Support/denoiser_OptiX/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/denoiser_OptiX/zlib1.dll -------------------------------------------------------------------------------- /Support/tests/_1_render.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/_1_render.ps1 -------------------------------------------------------------------------------- /Support/tests/_2_compare.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/_2_compare.ps1 -------------------------------------------------------------------------------- /Support/tests/_run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/_run.ps1 -------------------------------------------------------------------------------- /Support/tests/generate_golden.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/generate_golden.ps1 -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.realtime.1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.realtime.1.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.realtime.2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.realtime.2.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.realtime.3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.realtime.3.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.realtime.4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.realtime.4.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.realtime.4096.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.realtime.4096.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.reference.1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.reference.1.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.reference.2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.reference.2.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.reference.3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.reference.3.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.reference.4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.reference.4.bmp -------------------------------------------------------------------------------- /Support/tests/golden_image/test.kitchen.reference.4096.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/golden_image/test.kitchen.reference.4096.bmp -------------------------------------------------------------------------------- /Support/tests/run_psnr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/run_psnr.ps1 -------------------------------------------------------------------------------- /Support/tests/run_tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/run_tests.ps1 -------------------------------------------------------------------------------- /Support/tests/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-RTX/RTXPT/HEAD/Support/tests/tests.json --------------------------------------------------------------------------------