├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── COPYING ├── README.md ├── README_data ├── Features │ ├── features.md │ └── img │ │ ├── confidenceInterval.png │ │ ├── confidenceInterval2.png │ │ ├── cornellThreshold.jpg │ │ ├── cornell_pbr_reference.jpg │ │ ├── imguiInterface.jpg │ │ ├── minimumSampleNumber.jpg │ │ ├── normalMap.jpg │ │ ├── normalMappingE1E2.jpg │ │ └── normalMappingTBN.jpg └── img │ ├── Bistro.jpg │ ├── DispersionDiamonds.jpg │ ├── ImGuiDemo.jpg │ ├── LayeredBSDF.drawio │ ├── LayeredBSDF.png │ ├── LuxCoreBalls.jpg │ ├── Material_editor_thumbnail.jpg │ ├── MitsubaSheenDustOrbs.jpg │ ├── OIDN_AOVs_thumbnail.jpg │ ├── P1_environment.jpg │ ├── RIS.ReSTIR.Comparison.jpg │ ├── ReSTIR_DI_Showcase_thumbnail.jpg │ ├── blender-4.1-splash.jpg │ ├── bzd-measure-seven.jpg │ ├── contemporary-bedroom.jpg │ ├── dragon-glass.jpg │ ├── glass-energy.png │ ├── metallic-energy.png │ ├── pbrt-dragon-indirect-v2.jpg │ ├── pbrt-dragon-indirect.jpg │ ├── scene credits.txt │ ├── specular-diffuse-energy.png │ └── thin-film-iri-thumbnail.jpg ├── cmake ├── SetupASSIMP.cmake ├── SetupHIPRT.cmake ├── SetupOIDN.cmake ├── SetupOrochi.cmake └── SetupTracy.cmake ├── data ├── BRDFsData │ ├── GGX │ │ ├── GGX_Conductor_128x128.hdr │ │ └── Glass │ │ │ ├── 0GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 0GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 0inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 100GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 100inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 101GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 101inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 102GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 102inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 103GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 103inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 104GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 104inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 105GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 105inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 106GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 106inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 107GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 107inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 108GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 108inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 109GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 109inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 10GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 10GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 10inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 110GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 110inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 111GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 111inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 112GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 112inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 113GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 113inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 114GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 114inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 115GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 115inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 116GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 116inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 117GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 117inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 118GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 118inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 119GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 119inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 11GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 11GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 11inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 120GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 120inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 121GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 121inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 122GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 122inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 123GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 123inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 124GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 124inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 125GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 125inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 126GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 126inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 127GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 127inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 12GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 12GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 12inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 13GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 13GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 13inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 14GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 14GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 14inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 15GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 15GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 15inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 16GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 16GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 16inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 17GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 17GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 17inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 18GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 18GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 18inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 19GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 19GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 19inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 1GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 1GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 1inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 20GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 20GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 20inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 21GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 21GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 21inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 22GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 22GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 22inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 23GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 23GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 23inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 24GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 24GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 24inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 25GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 25GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 25inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 26GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 26GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 26inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 27GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 27GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 27inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 28GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 28GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 28inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 29GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 29GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 29inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 2GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 2GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 2inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 30GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 30GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 30inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 31GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 31GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 31inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 32GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 32GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 32inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 33GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 33GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 33inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 34GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 34GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 34inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 35GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 35GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 35inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 36GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 36GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 36inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 37GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 37GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 37inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 38GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 38GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 38inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 39GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 39GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 39inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 3GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 3GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 3inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 40GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 40GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 40inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 41GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 41GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 41inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 42GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 42GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 42inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 43GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 43GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 43inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 44GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 44GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 44inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 45GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 45GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 45inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 46GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 46GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 46inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 47GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 47GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 47inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 48GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 48GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 48inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 49GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 49GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 49inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 4GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 4GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 4inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 50GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 50GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 50inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 51GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 51GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 51inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 52GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 52GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 52inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 53GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 53GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 53inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 54GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 54GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 54inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 55GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 55GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 55inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 56GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 56GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 56inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 57GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 57GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 57inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 58GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 58GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 58inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 59GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 59GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 59inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 5GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 5GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 5inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 60GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 60GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 60inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 61GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 61GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 61inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 62GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 62GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 62inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 63GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 63GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 63inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 64GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 64GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 64inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 65GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 65GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 65inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 66GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 66GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 66inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 67GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 67GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 67inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 68GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 68GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 68inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 69GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 69GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 69inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 6GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 6GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 6inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 70GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 70GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 70inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 71GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 71GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 71inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 72GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 72GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 72inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 73GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 73GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 73inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 74GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 74GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 74inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 75GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 75GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 75inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 76GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 76GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 76inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 77GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 77GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 77inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 78GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 78GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 78inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 79GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 79GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 79inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 7GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 7GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 7inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 80GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 80GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 80inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 81GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 81GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 81inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 82GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 82GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 82inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 83GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 83GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 83inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 84GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 84GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 84inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 85GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 85GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 85inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 86GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 86GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 86inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 87GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 87GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 87inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 88GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 88GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 88inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 89GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 89GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 89inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 8GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 8GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 8inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 90GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 90GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 90inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 91GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 91GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 91inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 92GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 92GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 92inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 93GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 93GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 93inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 94GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 94GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 94inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 95GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 95GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 95inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 96GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 96inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 97GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 97inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 98GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 98inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 99GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 99inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 9GGX_Glass_Ess_256x16x128.hdr │ │ │ ├── 9GGX_Thin_Glass_Ess_32x32x96.hdr │ │ │ ├── 9inv_GGX_Glass_Ess_256x16x128.hdr │ │ │ └── ExponentCorrection.ipynb │ └── GlossyDielectrics │ │ ├── 0Glossy_Ess_128x64x128.hdr │ │ ├── 100Glossy_Ess_128x64x128.hdr │ │ ├── 101Glossy_Ess_128x64x128.hdr │ │ ├── 102Glossy_Ess_128x64x128.hdr │ │ ├── 103Glossy_Ess_128x64x128.hdr │ │ ├── 104Glossy_Ess_128x64x128.hdr │ │ ├── 105Glossy_Ess_128x64x128.hdr │ │ ├── 106Glossy_Ess_128x64x128.hdr │ │ ├── 107Glossy_Ess_128x64x128.hdr │ │ ├── 108Glossy_Ess_128x64x128.hdr │ │ ├── 109Glossy_Ess_128x64x128.hdr │ │ ├── 10Glossy_Ess_128x64x128.hdr │ │ ├── 110Glossy_Ess_128x64x128.hdr │ │ ├── 111Glossy_Ess_128x64x128.hdr │ │ ├── 112Glossy_Ess_128x64x128.hdr │ │ ├── 113Glossy_Ess_128x64x128.hdr │ │ ├── 114Glossy_Ess_128x64x128.hdr │ │ ├── 115Glossy_Ess_128x64x128.hdr │ │ ├── 116Glossy_Ess_128x64x128.hdr │ │ ├── 117Glossy_Ess_128x64x128.hdr │ │ ├── 118Glossy_Ess_128x64x128.hdr │ │ ├── 119Glossy_Ess_128x64x128.hdr │ │ ├── 11Glossy_Ess_128x64x128.hdr │ │ ├── 120Glossy_Ess_128x64x128.hdr │ │ ├── 121Glossy_Ess_128x64x128.hdr │ │ ├── 122Glossy_Ess_128x64x128.hdr │ │ ├── 123Glossy_Ess_128x64x128.hdr │ │ ├── 124Glossy_Ess_128x64x128.hdr │ │ ├── 125Glossy_Ess_128x64x128.hdr │ │ ├── 126Glossy_Ess_128x64x128.hdr │ │ ├── 127Glossy_Ess_128x64x128.hdr │ │ ├── 12Glossy_Ess_128x64x128.hdr │ │ ├── 13Glossy_Ess_128x64x128.hdr │ │ ├── 14Glossy_Ess_128x64x128.hdr │ │ ├── 15Glossy_Ess_128x64x128.hdr │ │ ├── 16Glossy_Ess_128x64x128.hdr │ │ ├── 17Glossy_Ess_128x64x128.hdr │ │ ├── 18Glossy_Ess_128x64x128.hdr │ │ ├── 19Glossy_Ess_128x64x128.hdr │ │ ├── 1Glossy_Ess_128x64x128.hdr │ │ ├── 20Glossy_Ess_128x64x128.hdr │ │ ├── 21Glossy_Ess_128x64x128.hdr │ │ ├── 22Glossy_Ess_128x64x128.hdr │ │ ├── 23Glossy_Ess_128x64x128.hdr │ │ ├── 24Glossy_Ess_128x64x128.hdr │ │ ├── 25Glossy_Ess_128x64x128.hdr │ │ ├── 26Glossy_Ess_128x64x128.hdr │ │ ├── 27Glossy_Ess_128x64x128.hdr │ │ ├── 28Glossy_Ess_128x64x128.hdr │ │ ├── 29Glossy_Ess_128x64x128.hdr │ │ ├── 2Glossy_Ess_128x64x128.hdr │ │ ├── 30Glossy_Ess_128x64x128.hdr │ │ ├── 31Glossy_Ess_128x64x128.hdr │ │ ├── 32Glossy_Ess_128x64x128.hdr │ │ ├── 33Glossy_Ess_128x64x128.hdr │ │ ├── 34Glossy_Ess_128x64x128.hdr │ │ ├── 35Glossy_Ess_128x64x128.hdr │ │ ├── 36Glossy_Ess_128x64x128.hdr │ │ ├── 37Glossy_Ess_128x64x128.hdr │ │ ├── 38Glossy_Ess_128x64x128.hdr │ │ ├── 39Glossy_Ess_128x64x128.hdr │ │ ├── 3Glossy_Ess_128x64x128.hdr │ │ ├── 40Glossy_Ess_128x64x128.hdr │ │ ├── 41Glossy_Ess_128x64x128.hdr │ │ ├── 42Glossy_Ess_128x64x128.hdr │ │ ├── 43Glossy_Ess_128x64x128.hdr │ │ ├── 44Glossy_Ess_128x64x128.hdr │ │ ├── 45Glossy_Ess_128x64x128.hdr │ │ ├── 46Glossy_Ess_128x64x128.hdr │ │ ├── 47Glossy_Ess_128x64x128.hdr │ │ ├── 48Glossy_Ess_128x64x128.hdr │ │ ├── 49Glossy_Ess_128x64x128.hdr │ │ ├── 4Glossy_Ess_128x64x128.hdr │ │ ├── 50Glossy_Ess_128x64x128.hdr │ │ ├── 51Glossy_Ess_128x64x128.hdr │ │ ├── 52Glossy_Ess_128x64x128.hdr │ │ ├── 53Glossy_Ess_128x64x128.hdr │ │ ├── 54Glossy_Ess_128x64x128.hdr │ │ ├── 55Glossy_Ess_128x64x128.hdr │ │ ├── 56Glossy_Ess_128x64x128.hdr │ │ ├── 57Glossy_Ess_128x64x128.hdr │ │ ├── 58Glossy_Ess_128x64x128.hdr │ │ ├── 59Glossy_Ess_128x64x128.hdr │ │ ├── 5Glossy_Ess_128x64x128.hdr │ │ ├── 60Glossy_Ess_128x64x128.hdr │ │ ├── 61Glossy_Ess_128x64x128.hdr │ │ ├── 62Glossy_Ess_128x64x128.hdr │ │ ├── 63Glossy_Ess_128x64x128.hdr │ │ ├── 64Glossy_Ess_128x64x128.hdr │ │ ├── 65Glossy_Ess_128x64x128.hdr │ │ ├── 66Glossy_Ess_128x64x128.hdr │ │ ├── 67Glossy_Ess_128x64x128.hdr │ │ ├── 68Glossy_Ess_128x64x128.hdr │ │ ├── 69Glossy_Ess_128x64x128.hdr │ │ ├── 6Glossy_Ess_128x64x128.hdr │ │ ├── 70Glossy_Ess_128x64x128.hdr │ │ ├── 71Glossy_Ess_128x64x128.hdr │ │ ├── 72Glossy_Ess_128x64x128.hdr │ │ ├── 73Glossy_Ess_128x64x128.hdr │ │ ├── 74Glossy_Ess_128x64x128.hdr │ │ ├── 75Glossy_Ess_128x64x128.hdr │ │ ├── 76Glossy_Ess_128x64x128.hdr │ │ ├── 77Glossy_Ess_128x64x128.hdr │ │ ├── 78Glossy_Ess_128x64x128.hdr │ │ ├── 79Glossy_Ess_128x64x128.hdr │ │ ├── 7Glossy_Ess_128x64x128.hdr │ │ ├── 80Glossy_Ess_128x64x128.hdr │ │ ├── 81Glossy_Ess_128x64x128.hdr │ │ ├── 82Glossy_Ess_128x64x128.hdr │ │ ├── 83Glossy_Ess_128x64x128.hdr │ │ ├── 84Glossy_Ess_128x64x128.hdr │ │ ├── 85Glossy_Ess_128x64x128.hdr │ │ ├── 86Glossy_Ess_128x64x128.hdr │ │ ├── 87Glossy_Ess_128x64x128.hdr │ │ ├── 88Glossy_Ess_128x64x128.hdr │ │ ├── 89Glossy_Ess_128x64x128.hdr │ │ ├── 8Glossy_Ess_128x64x128.hdr │ │ ├── 90Glossy_Ess_128x64x128.hdr │ │ ├── 91Glossy_Ess_128x64x128.hdr │ │ ├── 92Glossy_Ess_128x64x128.hdr │ │ ├── 93Glossy_Ess_128x64x128.hdr │ │ ├── 94Glossy_Ess_128x64x128.hdr │ │ ├── 95Glossy_Ess_128x64x128.hdr │ │ ├── 96Glossy_Ess_128x64x128.hdr │ │ ├── 97Glossy_Ess_128x64x128.hdr │ │ ├── 98Glossy_Ess_128x64x128.hdr │ │ ├── 99Glossy_Ess_128x64x128.hdr │ │ └── 9Glossy_Ess_128x64x128.hdr ├── GLTFs │ ├── cornell_pbr.bin │ ├── cornell_pbr.gltf │ ├── multi-dispersion.bin │ ├── multi-dispersion.gltf │ ├── nested-dielectrics-complex.bin │ ├── nested-dielectrics-complex.gltf │ ├── nested-dielectrics.bin │ ├── nested-dielectrics.gltf │ ├── the-white-room-low.bin │ ├── the-white-room-low.gltf │ └── the-white-room │ │ ├── Shade-paper.jpg │ │ ├── WoodFloor051_2K-JPG_Color_reduced.jpg │ │ ├── apple.jpg │ │ ├── book-spines.jpg │ │ ├── carpet-text3b.jpg │ │ ├── cushion-green-circles.jpg │ │ ├── cushion-purple-yellow-stripe.jpg │ │ ├── cushion-stripe-purple.jpg │ │ ├── magazine.jpg │ │ ├── photo1.jpg │ │ ├── photo2.jpg │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── pic3.jpg │ │ ├── pic5wide.jpg │ │ └── shade-stripes.jpg └── Skyspheres │ └── evening_road_01_puresky_2k.hdr ├── src ├── Compiler │ ├── GPUKernel.cpp │ ├── GPUKernel.h │ ├── GPUKernelCompiler.cpp │ ├── GPUKernelCompiler.h │ ├── GPUKernelCompilerOptions.cpp │ └── GPUKernelCompilerOptions.h ├── Device │ ├── functions │ │ ├── FilterFunction.h │ │ └── FilterFunctionPayload.h │ ├── includes │ │ ├── AdaptiveSampling.h │ │ ├── BSDFs │ │ │ ├── BSDFIncidentLightInfo.h │ │ │ ├── CookTorrance.h │ │ │ ├── Glass.h │ │ │ ├── Lambertian.h │ │ │ ├── Microfacet.h │ │ │ ├── MicrofacetEnergyCompensation.h │ │ │ ├── OrenNayar.h │ │ │ ├── Principled.h │ │ │ ├── PrincipledEnergyCompensation.h │ │ │ ├── SheenLTC.h │ │ │ ├── SheenLTCFittedParameters.h │ │ │ └── ThinFilm.h │ │ ├── Dispatcher.h │ │ ├── Dispersion.h │ │ ├── Envmap.h │ │ ├── FixIntellisense.h │ │ ├── Fresnel.h │ │ ├── GBufferDevice.h │ │ ├── GMoN │ │ │ ├── GMoN.h │ │ │ ├── GMoNDevice.h │ │ │ ├── GMoNMeansRadixSort.h │ │ │ └── GMoNMeansRadixSortHistogramDeclaration.h │ │ ├── Hash.h │ │ ├── Intersect.h │ │ ├── LightUtils.h │ │ ├── Lights.h │ │ ├── MISBSDFRayReuse.h │ │ ├── Material.h │ │ ├── NEE++ │ │ │ └── NEE++.h │ │ ├── NestedDielectrics.h │ │ ├── ONB.h │ │ ├── RIS │ │ │ ├── RIS.h │ │ │ └── RIS_Reservoir.h │ │ ├── RayPayload.h │ │ ├── RayVolumeState.h │ │ ├── ReSTIR │ │ │ └── DI │ │ │ │ ├── FinalShading.h │ │ │ │ ├── PresampledLight.h │ │ │ │ ├── Reservoir.h │ │ │ │ ├── SampleFlags.h │ │ │ │ ├── SpatialMISWeight.h │ │ │ │ ├── SpatialNormalizationWeight.h │ │ │ │ ├── SpatiotemporalMISWeight.h │ │ │ │ ├── SpatiotemporalNormalizationWeight.h │ │ │ │ ├── Surface.h │ │ │ │ ├── TemporalMISWeight.h │ │ │ │ ├── TemporalNormalizationWeight.h │ │ │ │ └── Utils.h │ │ ├── RussianRoulette.h │ │ ├── Sampling.h │ │ ├── Texture.h │ │ ├── TriangleStructures.h │ │ └── WarpDirectionReuse.h │ ├── kernel_parameters │ │ ├── NEE++ │ │ │ └── NEEPlusPlusCachingPrepassParameters.h │ │ └── ReSTIR │ │ │ └── DI │ │ │ └── LightPresamplingParameters.h │ └── kernels │ │ ├── Baking │ │ ├── GGXConductorDirectionalAlbedo.h │ │ ├── GGXFresnelDirectionalAlbedo.h │ │ ├── GGXGlassDirectionalAlbedo.h │ │ ├── GGXThinGlassDirectionalAlbedo.h │ │ └── GlossyDielectricDirectionalAlbedo.h │ │ ├── CameraRays.h │ │ ├── Experimentations │ │ ├── RegistersTest.h │ │ ├── Test3DTexture.h │ │ ├── TestCopyKernelAlignment.h │ │ └── TestCopyKernelRestrict.h │ │ ├── FullPathTracer.h │ │ ├── GMoN │ │ └── GMoNComputeMedianOfMeans.h │ │ ├── NEE++ │ │ ├── NEEPlusPlusCachingPrepass.h │ │ └── NEEPlusPlusFinalizeAccumulation.h │ │ ├── ReSTIR │ │ └── DI │ │ │ ├── FusedSpatiotemporalReuse.h │ │ │ ├── InitialCandidates.h │ │ │ ├── LightsPresampling.h │ │ │ ├── SpatialReuse.h │ │ │ └── TemporalReuse.h │ │ ├── TraceTest.h │ │ └── Utils │ │ └── RayVolumeStateSize.h ├── Experimentations │ ├── TestCopyKernelAlignment.cpp │ ├── TestCopyKernelAlignment.h │ ├── TestCopyKernelRestrict.cpp │ └── TestCopyKernelRestrict.h ├── HIPRT-Orochi │ ├── HIPRTOrochiCtx.h │ ├── HIPRTOrochiUtils.cpp │ ├── HIPRTOrochiUtils.h │ ├── HIPRTScene.h │ ├── OrochiBuffer.h │ ├── OrochiEnvmap.cpp │ ├── OrochiEnvmap.h │ ├── OrochiTexture.cpp │ ├── OrochiTexture.h │ ├── OrochiTexture3D.cpp │ ├── OrochiTexture3D.h │ └── OrochiTextureCUDA.cpp ├── HostDeviceCommon │ ├── BSDFsData.h │ ├── Color.h │ ├── HIPRTCamera.h │ ├── HitInfo.h │ ├── KernelOptions │ │ ├── Common.h │ │ ├── GMoNOptions.h │ │ ├── KernelOptions.h │ │ └── PrincipledBSDFKernelOptions.h │ ├── Material │ │ ├── MaterialCPU.h │ │ ├── MaterialPacked.h │ │ ├── MaterialPackedSoA.h │ │ ├── MaterialUnpacked.h │ │ └── MaterialUtils.h │ ├── Math.h │ ├── Packing.h │ ├── PathRussianRoulette.h │ ├── ReSTIRDISettings.h │ ├── RenderBuffers.h │ ├── RenderData.h │ ├── RenderSettings.cpp │ ├── RenderSettings.h │ ├── WorldSettings.h │ └── Xorshift.h ├── Image │ ├── EnvmapRGBE9995.h │ ├── Image.cpp │ └── Image.h ├── OpenGL │ ├── OpenGLInteropBuffer.h │ ├── OpenGLProgram.cpp │ ├── OpenGLProgram.h │ ├── OpenGLShader.cpp │ └── OpenGLShader.h ├── Renderer │ ├── BVH.cpp │ ├── BVH.h │ ├── BVHConstants.h │ ├── Baker │ │ ├── GGXConductorDirectionalAlbedoSettings.h │ │ ├── GGXFresnelDirectionalAlbedoSettings.h │ │ ├── GGXGlassDirectionalAlbedoSettings.h │ │ ├── GGXThinGlassDirectionalAlbedoSettings.h │ │ ├── GPUBaker.cpp │ │ ├── GPUBaker.h │ │ ├── GPUBakerConstants.h │ │ ├── GPUBakerKernel.cpp │ │ ├── GPUBakerKernel.h │ │ └── GlossyDielectricDirectionalAlbedoSettings.h │ ├── BoundingVolume.h │ ├── CPUDataStructures │ │ ├── GBufferCPUData.h │ │ ├── GMoNCPUData.h │ │ ├── MaterialPackedSoACPUData.h │ │ └── NEEPlusPlusCPUData.h │ ├── CPUGPUCommonDataStructures │ │ ├── DevicePackedMaterialSoACPUGPUCommonData.h │ │ ├── GMoNCPUGPUCommonData.h │ │ └── NEEPlusPlusCPUGPUCommonData.h │ ├── CPURenderer.cpp │ ├── CPURenderer.h │ ├── GPUDataStructures │ │ ├── DenoiserBuffersGPUData.cpp │ │ ├── DenoiserBuffersGPUData.h │ │ ├── GBufferGPUData.h │ │ ├── GMoNGPUData.h │ │ ├── MaterialPackedSoAGPUData.h │ │ ├── NEEPlusPlusGPUData.cpp │ │ ├── NEEPlusPlusGPUData.h │ │ └── StatusBuffersGPUData.h │ ├── GPURenderer.cpp │ ├── GPURenderer.h │ ├── HardwareAccelerationSupport.h │ ├── OpenImageDenoiser.cpp │ ├── OpenImageDenoiser.h │ ├── RenderPasses │ │ ├── GMoNRenderPass.cpp │ │ ├── GMoNRenderPass.h │ │ ├── ReSTIRDIRenderPass.cpp │ │ └── ReSTIRDIRenderPass.h │ ├── RendererAnimationState.h │ ├── RendererEnvmap.cpp │ ├── RendererEnvmap.h │ ├── Sphere.h │ ├── StatusBuffersValues.h │ ├── Triangle.cpp │ └── Triangle.h ├── Scene │ ├── BoundingBox.h │ ├── Camera.cpp │ ├── Camera.h │ ├── CameraAnimation.cpp │ ├── CameraAnimation.h │ ├── CameraRotationType.h │ ├── SceneParser.cpp │ └── SceneParser.h ├── Shaders │ ├── albedo_display.frag │ ├── blend_2_display.frag │ ├── boolmap_int.frag │ ├── default_display.frag │ ├── fullscreen_quad.vert │ ├── heatmap_int.frag │ ├── normal_display.frag │ └── white_furnace_threshold.frag ├── Threads │ ├── ThreadFunctions.cpp │ ├── ThreadFunctions.h │ ├── ThreadManager.cpp │ ├── ThreadManager.h │ └── ThreadState.h ├── UI │ ├── ApplicationSettings.h │ ├── ApplicationState.h │ ├── DisplayView │ │ ├── DisplaySettings.h │ │ ├── DisplayTextureType.h │ │ ├── DisplayView.cpp │ │ ├── DisplayView.h │ │ ├── DisplayViewEnum.h │ │ ├── DisplayViewSystem.cpp │ │ └── DisplayViewSystem.h │ ├── ImGui │ │ ├── ImGuiAnimationWindow.cpp │ │ ├── ImGuiAnimationWindow.h │ │ ├── ImGuiBakingWindow.cpp │ │ ├── ImGuiBakingWindow.h │ │ ├── ImGuiLogWindow.cpp │ │ ├── ImGuiLogWindow.h │ │ ├── ImGuiLogger.cpp │ │ ├── ImGuiLogger.h │ │ ├── ImGuiLoggerLine.h │ │ ├── ImGuiLoggerSeverity.h │ │ ├── ImGuiObjectsWindow.cpp │ │ ├── ImGuiObjectsWindow.h │ │ ├── ImGuiRenderWindow.cpp │ │ ├── ImGuiRenderWindow.h │ │ ├── ImGuiRenderer.cpp │ │ ├── ImGuiRenderer.h │ │ ├── ImGuiRendererPerformancePreset.h │ │ ├── ImGuiSettingsWindow.cpp │ │ └── ImGuiSettingsWindow.h │ ├── Interaction │ │ ├── LinuxRenderWindowMouseInteractor.cpp │ │ ├── LinuxRenderWindowMouseInteractor.h │ │ ├── RenderWindowKeyboardInteractor.cpp │ │ ├── RenderWindowKeyboardInteractor.h │ │ ├── RenderWindowMouseInteractor.cpp │ │ ├── RenderWindowMouseInteractor.h │ │ ├── WindowsRenderWindowMouseInteractor.cpp │ │ └── WindowsRenderWindowMouseInteractor.h │ ├── PerformanceMetricsComputer.cpp │ ├── PerformanceMetricsComputer.h │ ├── RenderWindow.cpp │ ├── RenderWindow.h │ ├── Screenshoter.cpp │ └── Screenshoter.h ├── Utils │ ├── CommandlineArguments.cpp │ ├── CommandlineArguments.h │ ├── Utils.cpp │ └── Utils.h └── main.cpp └── thirdparties ├── glm └── glm │ ├── common.hpp │ ├── detail │ ├── _features.hpp │ ├── _fixes.hpp │ ├── _noise.hpp │ ├── _swizzle.hpp │ ├── _swizzle_func.hpp │ ├── _vectorize.hpp │ ├── compute_common.hpp │ ├── compute_vector_relational.hpp │ ├── func_common.inl │ ├── func_common_simd.inl │ ├── func_exponential.inl │ ├── func_exponential_simd.inl │ ├── func_geometric.inl │ ├── func_geometric_simd.inl │ ├── func_integer.inl │ ├── func_integer_simd.inl │ ├── func_matrix.inl │ ├── func_matrix_simd.inl │ ├── func_packing.inl │ ├── func_packing_simd.inl │ ├── func_trigonometric.inl │ ├── func_trigonometric_simd.inl │ ├── func_vector_relational.inl │ ├── func_vector_relational_simd.inl │ ├── glm.cpp │ ├── qualifier.hpp │ ├── setup.hpp │ ├── type_float.hpp │ ├── type_half.hpp │ ├── type_half.inl │ ├── type_mat2x2.hpp │ ├── type_mat2x2.inl │ ├── type_mat2x3.hpp │ ├── type_mat2x3.inl │ ├── type_mat2x4.hpp │ ├── type_mat2x4.inl │ ├── type_mat3x2.hpp │ ├── type_mat3x2.inl │ ├── type_mat3x3.hpp │ ├── type_mat3x3.inl │ ├── type_mat3x4.hpp │ ├── type_mat3x4.inl │ ├── type_mat4x2.hpp │ ├── type_mat4x2.inl │ ├── type_mat4x3.hpp │ ├── type_mat4x3.inl │ ├── type_mat4x4.hpp │ ├── type_mat4x4.inl │ ├── type_mat4x4_simd.inl │ ├── type_quat.hpp │ ├── type_quat.inl │ ├── type_quat_simd.inl │ ├── type_vec1.hpp │ ├── type_vec1.inl │ ├── type_vec2.hpp │ ├── type_vec2.inl │ ├── type_vec3.hpp │ ├── type_vec3.inl │ ├── type_vec4.hpp │ ├── type_vec4.inl │ └── type_vec4_simd.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── ext │ ├── _matrix_vectorize.hpp │ ├── matrix_clip_space.hpp │ ├── matrix_clip_space.inl │ ├── matrix_common.hpp │ ├── matrix_common.inl │ ├── matrix_double2x2.hpp │ ├── matrix_double2x2_precision.hpp │ ├── matrix_double2x3.hpp │ ├── matrix_double2x3_precision.hpp │ ├── matrix_double2x4.hpp │ ├── matrix_double2x4_precision.hpp │ ├── matrix_double3x2.hpp │ ├── matrix_double3x2_precision.hpp │ ├── matrix_double3x3.hpp │ ├── matrix_double3x3_precision.hpp │ ├── matrix_double3x4.hpp │ ├── matrix_double3x4_precision.hpp │ ├── matrix_double4x2.hpp │ ├── matrix_double4x2_precision.hpp │ ├── matrix_double4x3.hpp │ ├── matrix_double4x3_precision.hpp │ ├── matrix_double4x4.hpp │ ├── matrix_double4x4_precision.hpp │ ├── matrix_float2x2.hpp │ ├── matrix_float2x2_precision.hpp │ ├── matrix_float2x3.hpp │ ├── matrix_float2x3_precision.hpp │ ├── matrix_float2x4.hpp │ ├── matrix_float2x4_precision.hpp │ ├── matrix_float3x2.hpp │ ├── matrix_float3x2_precision.hpp │ ├── matrix_float3x3.hpp │ ├── matrix_float3x3_precision.hpp │ ├── matrix_float3x4.hpp │ ├── matrix_float3x4_precision.hpp │ ├── matrix_float4x2.hpp │ ├── matrix_float4x2_precision.hpp │ ├── matrix_float4x3.hpp │ ├── matrix_float4x3_precision.hpp │ ├── matrix_float4x4.hpp │ ├── matrix_float4x4_precision.hpp │ ├── matrix_int2x2.hpp │ ├── matrix_int2x2_sized.hpp │ ├── matrix_int2x3.hpp │ ├── matrix_int2x3_sized.hpp │ ├── matrix_int2x4.hpp │ ├── matrix_int2x4_sized.hpp │ ├── matrix_int3x2.hpp │ ├── matrix_int3x2_sized.hpp │ ├── matrix_int3x3.hpp │ ├── matrix_int3x3_sized.hpp │ ├── matrix_int3x4.hpp │ ├── matrix_int3x4_sized.hpp │ ├── matrix_int4x2.hpp │ ├── matrix_int4x2_sized.hpp │ ├── matrix_int4x3.hpp │ ├── matrix_int4x3_sized.hpp │ ├── matrix_int4x4.hpp │ ├── matrix_int4x4_sized.hpp │ ├── matrix_integer.hpp │ ├── matrix_integer.inl │ ├── matrix_projection.hpp │ ├── matrix_projection.inl │ ├── matrix_relational.hpp │ ├── matrix_relational.inl │ ├── matrix_transform.hpp │ ├── matrix_transform.inl │ ├── matrix_uint2x2.hpp │ ├── matrix_uint2x2_sized.hpp │ ├── matrix_uint2x3.hpp │ ├── matrix_uint2x3_sized.hpp │ ├── matrix_uint2x4.hpp │ ├── matrix_uint2x4_sized.hpp │ ├── matrix_uint3x2.hpp │ ├── matrix_uint3x2_sized.hpp │ ├── matrix_uint3x3.hpp │ ├── matrix_uint3x3_sized.hpp │ ├── matrix_uint3x4.hpp │ ├── matrix_uint3x4_sized.hpp │ ├── matrix_uint4x2.hpp │ ├── matrix_uint4x2_sized.hpp │ ├── matrix_uint4x3.hpp │ ├── matrix_uint4x3_sized.hpp │ ├── matrix_uint4x4.hpp │ ├── matrix_uint4x4_sized.hpp │ ├── quaternion_common.hpp │ ├── quaternion_common.inl │ ├── quaternion_common_simd.inl │ ├── quaternion_double.hpp │ ├── quaternion_double_precision.hpp │ ├── quaternion_exponential.hpp │ ├── quaternion_exponential.inl │ ├── quaternion_float.hpp │ ├── quaternion_float_precision.hpp │ ├── quaternion_geometric.hpp │ ├── quaternion_geometric.inl │ ├── quaternion_relational.hpp │ ├── quaternion_relational.inl │ ├── quaternion_transform.hpp │ ├── quaternion_transform.inl │ ├── quaternion_trigonometric.hpp │ ├── quaternion_trigonometric.inl │ ├── scalar_common.hpp │ ├── scalar_common.inl │ ├── scalar_constants.hpp │ ├── scalar_constants.inl │ ├── scalar_int_sized.hpp │ ├── scalar_integer.hpp │ ├── scalar_integer.inl │ ├── scalar_packing.hpp │ ├── scalar_packing.inl │ ├── scalar_reciprocal.hpp │ ├── scalar_reciprocal.inl │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── scalar_uint_sized.hpp │ ├── scalar_ulp.hpp │ ├── scalar_ulp.inl │ ├── vector_bool1.hpp │ ├── vector_bool1_precision.hpp │ ├── vector_bool2.hpp │ ├── vector_bool2_precision.hpp │ ├── vector_bool3.hpp │ ├── vector_bool3_precision.hpp │ ├── vector_bool4.hpp │ ├── vector_bool4_precision.hpp │ ├── vector_common.hpp │ ├── vector_common.inl │ ├── vector_double1.hpp │ ├── vector_double1_precision.hpp │ ├── vector_double2.hpp │ ├── vector_double2_precision.hpp │ ├── vector_double3.hpp │ ├── vector_double3_precision.hpp │ ├── vector_double4.hpp │ ├── vector_double4_precision.hpp │ ├── vector_float1.hpp │ ├── vector_float1_precision.hpp │ ├── vector_float2.hpp │ ├── vector_float2_precision.hpp │ ├── vector_float3.hpp │ ├── vector_float3_precision.hpp │ ├── vector_float4.hpp │ ├── vector_float4_precision.hpp │ ├── vector_int1.hpp │ ├── vector_int1_sized.hpp │ ├── vector_int2.hpp │ ├── vector_int2_sized.hpp │ ├── vector_int3.hpp │ ├── vector_int3_sized.hpp │ ├── vector_int4.hpp │ ├── vector_int4_sized.hpp │ ├── vector_integer.hpp │ ├── vector_integer.inl │ ├── vector_packing.hpp │ ├── vector_packing.inl │ ├── vector_reciprocal.hpp │ ├── vector_reciprocal.inl │ ├── vector_relational.hpp │ ├── vector_relational.inl │ ├── vector_uint1.hpp │ ├── vector_uint1_sized.hpp │ ├── vector_uint2.hpp │ ├── vector_uint2_sized.hpp │ ├── vector_uint3.hpp │ ├── vector_uint3_sized.hpp │ ├── vector_uint4.hpp │ ├── vector_uint4_sized.hpp │ ├── vector_ulp.hpp │ └── vector_ulp.inl │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.cppm │ ├── glm.hpp │ ├── gtc │ ├── bitfield.hpp │ ├── bitfield.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── constants.hpp │ ├── constants.inl │ ├── epsilon.hpp │ ├── epsilon.inl │ ├── integer.hpp │ ├── integer.inl │ ├── matrix_access.hpp │ ├── matrix_access.inl │ ├── matrix_integer.hpp │ ├── matrix_inverse.hpp │ ├── matrix_inverse.inl │ ├── matrix_transform.hpp │ ├── matrix_transform.inl │ ├── noise.hpp │ ├── noise.inl │ ├── packing.hpp │ ├── packing.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── quaternion_simd.inl │ ├── random.hpp │ ├── random.inl │ ├── reciprocal.hpp │ ├── round.hpp │ ├── round.inl │ ├── type_aligned.hpp │ ├── type_precision.hpp │ ├── type_precision.inl │ ├── type_ptr.hpp │ ├── type_ptr.inl │ ├── ulp.hpp │ ├── ulp.inl │ └── vec1.hpp │ ├── gtx │ ├── associated_min_max.hpp │ ├── associated_min_max.inl │ ├── bit.hpp │ ├── bit.inl │ ├── closest_point.hpp │ ├── closest_point.inl │ ├── color_encoding.hpp │ ├── color_encoding.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── color_space_YCoCg.hpp │ ├── color_space_YCoCg.inl │ ├── common.hpp │ ├── common.inl │ ├── compatibility.hpp │ ├── compatibility.inl │ ├── component_wise.hpp │ ├── component_wise.inl │ ├── dual_quaternion.hpp │ ├── dual_quaternion.inl │ ├── easing.hpp │ ├── easing.inl │ ├── euler_angles.hpp │ ├── euler_angles.inl │ ├── extend.hpp │ ├── extend.inl │ ├── extended_min_max.hpp │ ├── extended_min_max.inl │ ├── exterior_product.hpp │ ├── exterior_product.inl │ ├── fast_exponential.hpp │ ├── fast_exponential.inl │ ├── fast_square_root.hpp │ ├── fast_square_root.inl │ ├── fast_trigonometry.hpp │ ├── fast_trigonometry.inl │ ├── float_notmalize.inl │ ├── functions.hpp │ ├── functions.inl │ ├── gradient_paint.hpp │ ├── gradient_paint.inl │ ├── handed_coordinate_space.hpp │ ├── handed_coordinate_space.inl │ ├── hash.hpp │ ├── hash.inl │ ├── integer.hpp │ ├── integer.inl │ ├── intersect.hpp │ ├── intersect.inl │ ├── io.hpp │ ├── io.inl │ ├── log_base.hpp │ ├── log_base.inl │ ├── matrix_cross_product.hpp │ ├── matrix_cross_product.inl │ ├── matrix_decompose.hpp │ ├── matrix_decompose.inl │ ├── matrix_factorisation.hpp │ ├── matrix_factorisation.inl │ ├── matrix_interpolation.hpp │ ├── matrix_interpolation.inl │ ├── matrix_major_storage.hpp │ ├── matrix_major_storage.inl │ ├── matrix_operation.hpp │ ├── matrix_operation.inl │ ├── matrix_query.hpp │ ├── matrix_query.inl │ ├── matrix_transform_2d.hpp │ ├── matrix_transform_2d.inl │ ├── mixed_product.hpp │ ├── mixed_product.inl │ ├── norm.hpp │ ├── norm.inl │ ├── normal.hpp │ ├── normal.inl │ ├── normalize_dot.hpp │ ├── normalize_dot.inl │ ├── number_precision.hpp │ ├── optimum_pow.hpp │ ├── optimum_pow.inl │ ├── orthonormalize.hpp │ ├── orthonormalize.inl │ ├── pca.hpp │ ├── pca.inl │ ├── perpendicular.hpp │ ├── perpendicular.inl │ ├── polar_coordinates.hpp │ ├── polar_coordinates.inl │ ├── projection.hpp │ ├── projection.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── range.hpp │ ├── raw_data.hpp │ ├── raw_data.inl │ ├── rotate_normalized_axis.hpp │ ├── rotate_normalized_axis.inl │ ├── rotate_vector.hpp │ ├── rotate_vector.inl │ ├── scalar_multiplication.hpp │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── spline.hpp │ ├── spline.inl │ ├── std_based_type.hpp │ ├── std_based_type.inl │ ├── string_cast.hpp │ ├── string_cast.inl │ ├── texture.hpp │ ├── texture.inl │ ├── transform.hpp │ ├── transform.inl │ ├── transform2.hpp │ ├── transform2.inl │ ├── type_aligned.hpp │ ├── type_aligned.inl │ ├── type_trait.hpp │ ├── type_trait.inl │ ├── vec_swizzle.hpp │ ├── vector_angle.hpp │ ├── vector_angle.inl │ ├── vector_query.hpp │ ├── vector_query.inl │ ├── wrap.hpp │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ ├── common.h │ ├── exponential.h │ ├── geometric.h │ ├── integer.h │ ├── matrix.h │ ├── neon.h │ ├── packing.h │ ├── platform.h │ ├── trigonometric.h │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── opengl ├── bin │ └── GLEW │ │ └── glew32.dll ├── include │ ├── GL │ │ ├── eglew.h │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h └── lib │ ├── GLEW │ └── glew32.lib │ └── GLFW │ └── glfw3.lib ├── stbi ├── stb_image.h └── stb_image_write.h └── tinyexr ├── tinyexr.cc └── tinyexr.h /.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | 3 | RT_output*.png 4 | 5 | .vscode 6 | .vs 7 | 8 | build* 9 | data/OBJs/*.blend 10 | data/OBJs/*.obj 11 | data/OBJs/*.mtl 12 | data/Skyspheres/*.hdr 13 | data/OBJs/Projects/ 14 | data/Skyspheres/evening_road_01_puresky_8k.hdr 15 | data/Skyspheres/AllSkyFree_Sky_EpicGloriousPink_EquirectDebug.jpg 16 | data/Skyspheres/AllSkyFree_Sky_EpicGloriousPink_Equirect.jpg 17 | oidn/bin/ 18 | oidn/doc/ 19 | oidn/lib/ 20 | 21 | thirdparties/ 22 | 23 | contrib/ 24 | hiprt/ 25 | 26 | -------------------------------------------------------------------------------- /README_data/Features/img/confidenceInterval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/confidenceInterval.png -------------------------------------------------------------------------------- /README_data/Features/img/confidenceInterval2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/confidenceInterval2.png -------------------------------------------------------------------------------- /README_data/Features/img/cornellThreshold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/cornellThreshold.jpg -------------------------------------------------------------------------------- /README_data/Features/img/cornell_pbr_reference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/cornell_pbr_reference.jpg -------------------------------------------------------------------------------- /README_data/Features/img/imguiInterface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/imguiInterface.jpg -------------------------------------------------------------------------------- /README_data/Features/img/minimumSampleNumber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/minimumSampleNumber.jpg -------------------------------------------------------------------------------- /README_data/Features/img/normalMap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/normalMap.jpg -------------------------------------------------------------------------------- /README_data/Features/img/normalMappingE1E2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/normalMappingE1E2.jpg -------------------------------------------------------------------------------- /README_data/Features/img/normalMappingTBN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/Features/img/normalMappingTBN.jpg -------------------------------------------------------------------------------- /README_data/img/Bistro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/Bistro.jpg -------------------------------------------------------------------------------- /README_data/img/DispersionDiamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/DispersionDiamonds.jpg -------------------------------------------------------------------------------- /README_data/img/ImGuiDemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/ImGuiDemo.jpg -------------------------------------------------------------------------------- /README_data/img/LayeredBSDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/LayeredBSDF.png -------------------------------------------------------------------------------- /README_data/img/LuxCoreBalls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/LuxCoreBalls.jpg -------------------------------------------------------------------------------- /README_data/img/Material_editor_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/Material_editor_thumbnail.jpg -------------------------------------------------------------------------------- /README_data/img/MitsubaSheenDustOrbs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/MitsubaSheenDustOrbs.jpg -------------------------------------------------------------------------------- /README_data/img/OIDN_AOVs_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/OIDN_AOVs_thumbnail.jpg -------------------------------------------------------------------------------- /README_data/img/P1_environment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/P1_environment.jpg -------------------------------------------------------------------------------- /README_data/img/RIS.ReSTIR.Comparison.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/RIS.ReSTIR.Comparison.jpg -------------------------------------------------------------------------------- /README_data/img/ReSTIR_DI_Showcase_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/ReSTIR_DI_Showcase_thumbnail.jpg -------------------------------------------------------------------------------- /README_data/img/blender-4.1-splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/blender-4.1-splash.jpg -------------------------------------------------------------------------------- /README_data/img/bzd-measure-seven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/bzd-measure-seven.jpg -------------------------------------------------------------------------------- /README_data/img/contemporary-bedroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/contemporary-bedroom.jpg -------------------------------------------------------------------------------- /README_data/img/dragon-glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/dragon-glass.jpg -------------------------------------------------------------------------------- /README_data/img/glass-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/glass-energy.png -------------------------------------------------------------------------------- /README_data/img/metallic-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/metallic-energy.png -------------------------------------------------------------------------------- /README_data/img/pbrt-dragon-indirect-v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/pbrt-dragon-indirect-v2.jpg -------------------------------------------------------------------------------- /README_data/img/pbrt-dragon-indirect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/pbrt-dragon-indirect.jpg -------------------------------------------------------------------------------- /README_data/img/specular-diffuse-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/specular-diffuse-energy.png -------------------------------------------------------------------------------- /README_data/img/thin-film-iri-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/README_data/img/thin-film-iri-thumbnail.jpg -------------------------------------------------------------------------------- /cmake/SetupOIDN.cmake: -------------------------------------------------------------------------------- 1 | if (WIN32) 2 | set(OIDN_URL https://github.com/RenderKit/oidn/releases/download/v2.3.0/oidn-2.3.0.x64.windows.zip) 3 | elseif(UNIX) 4 | set(OIDN_URL https://github.com/RenderKit/oidn/releases/download/v2.3.0/oidn-2.3.0.x86_64.linux.tar.gz) 5 | endif() 6 | 7 | FetchContent_Declare( 8 | oidnbinaries 9 | URL ${OIDN_URL} 10 | ) 11 | 12 | FetchContent_MakeAvailable( 13 | oidnbinaries 14 | ) 15 | -------------------------------------------------------------------------------- /cmake/SetupTracy.cmake: -------------------------------------------------------------------------------- 1 | add_subdirectory(thirdparties/tracy) 2 | 3 | set(DISABLE_TRACY_PROFILING ON) 4 | 5 | if (DISABLE_TRACY_PROFILING) 6 | get_target_property(TRACY_INTERFACE TracyClient INTERFACE_COMPILE_DEFINITIONS) 7 | list(REMOVE_ITEM TRACY_INTERFACE "TRACY_ENABLE") 8 | set_target_properties(TracyClient PROPERTIES INTERFACE_COMPILE_DEFINITIONS "${TRACY_INTERFACE}") 9 | endif() 10 | -------------------------------------------------------------------------------- /data/BRDFsData/GGX/GGX_Conductor_128x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/GGX_Conductor_128x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/0GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/0GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/0GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/0GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/0inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/0inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/100GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/100GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/100inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/100inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/101GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/101GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/101inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/101inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/102GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/102GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/102inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/102inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/103GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/103GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/103inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/103inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/104GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/104GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/104inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/104inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/105GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/105GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/105inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/105inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/106GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/106GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/106inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/106inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/107GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/107GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/107inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/107inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/108GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/108GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/108inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/108inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/109GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/109GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/109inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/109inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/10GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/10GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/10GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/10GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/10inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/10inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/110GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/110GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/110inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/110inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/111GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/111GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/111inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/111inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/112GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/112GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/112inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/112inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/113GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/113GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/113inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/113inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/114GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/114GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/114inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/114inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/115GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/115GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/115inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/115inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/116GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/116GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/116inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/116inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/117GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/117GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/117inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/117inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/118GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/118GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/118inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/118inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/119GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/119GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/119inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/119inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/11GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/11GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/11GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/11GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/11inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/11inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/120GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/120GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/120inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/120inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/121GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/121GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/121inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/121inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/122GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/122GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/122inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/122inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/123GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/123GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/123inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/123inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/124GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/124GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/124inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/124inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/125GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/125GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/125inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/125inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/126GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/126GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/126inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/126inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/127GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/127GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/127inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/127inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/12GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/12GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/12GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/12GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/12inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/12inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/13GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/13GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/13GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/13GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/13inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/13inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/14GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/14GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/14GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/14GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/14inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/14inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/15GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/15GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/15GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/15GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/15inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/15inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/16GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/16GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/16GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/16GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/16inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/16inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/17GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/17GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/17GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/17GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/17inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/17inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/18GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/18GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/18GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/18GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/18inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/18inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/19GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/19GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/19GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/19GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/19inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/19inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/1GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/1GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/1GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/1GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/1inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/1inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/20GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/20GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/20GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/20GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/20inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/20inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/21GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/21GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/21GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/21GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/21inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/21inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/22GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/22GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/22GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/22GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/22inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/22inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/23GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/23GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/23GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/23GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/23inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/23inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/24GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/24GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/24GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/24GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/24inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/24inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/25GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/25GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/25GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/25GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/25inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/25inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/26GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/26GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/26GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/26GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/26inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/26inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/27GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/27GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/27GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/27GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/27inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/27inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/28GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/28GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/28GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/28GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/28inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/28inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/29GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/29GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/29GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/29GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/29inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/29inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/2GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/2GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/2GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/2GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/2inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/2inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/30GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/30GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/30GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/30GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/30inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/30inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/31GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/31GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/31GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/31GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/31inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/31inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/32GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/32GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/32GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/32GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/32inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/32inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/33GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/33GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/33GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/33GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/33inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/33inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/34GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/34GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/34GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/34GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/34inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/34inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/35GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/35GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/35GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/35GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/35inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/35inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/36GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/36GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/36GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/36GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/36inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/36inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/37GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/37GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/37GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/37GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/37inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/37inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/38GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/38GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/38GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/38GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/38inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/38inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/39GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/39GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/39GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/39GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/39inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/39inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/3GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/3GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/3GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/3GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/3inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/3inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/40GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/40GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/40GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/40GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/40inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/40inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/41GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/41GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/41GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/41GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/41inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/41inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/42GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/42GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/42GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/42GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/42inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/42inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/43GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/43GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/43GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/43GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/43inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/43inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/44GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/44GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/44GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/44GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/44inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/44inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/45GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/45GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/45GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/45GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/45inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/45inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/46GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/46GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/46GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/46GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/46inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/46inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/47GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/47GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/47GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/47GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/47inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/47inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/48GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/48GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/48GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/48GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/48inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/48inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/49GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/49GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/49GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/49GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/49inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/49inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/4GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/4GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/4GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/4GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/4inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/4inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/50GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/50GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/50GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/50GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/50inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/50inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/51GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/51GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/51GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/51GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/51inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/51inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/52GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/52GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/52GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/52GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/52inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/52inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/53GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/53GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/53GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/53GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/53inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/53inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/54GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/54GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/54GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/54GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/54inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/54inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/55GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/55GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/55GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/55GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/55inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/55inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/56GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/56GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/56GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/56GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/56inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/56inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/57GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/57GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/57GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/57GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/57inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/57inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/58GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/58GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/58GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/58GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/58inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/58inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/59GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/59GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/59GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/59GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/59inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/59inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/5GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/5GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/5GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/5GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/5inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/5inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/60GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/60GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/60GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/60GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/60inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/60inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/61GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/61GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/61GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/61GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/61inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/61inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/62GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/62GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/62GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/62GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/62inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/62inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/63GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/63GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/63GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/63GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/63inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/63inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/64GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/64GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/64GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/64GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/64inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/64inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/65GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/65GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/65GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/65GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/65inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/65inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/66GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/66GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/66GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/66GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/66inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/66inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/67GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/67GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/67GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/67GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/67inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/67inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/68GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/68GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/68GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/68GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/68inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/68inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/69GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/69GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/69GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/69GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/69inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/69inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/6GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/6GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/6GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/6GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/6inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/6inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/70GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/70GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/70GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/70GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/70inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/70inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/71GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/71GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/71GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/71GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/71inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/71inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/72GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/72GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/72GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/72GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/72inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/72inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/73GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/73GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/73GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/73GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/73inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/73inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/74GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/74GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/74GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/74GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/74inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/74inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/75GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/75GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/75GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/75GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/75inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/75inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/76GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/76GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/76GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/76GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/76inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/76inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/77GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/77GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/77GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/77GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/77inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/77inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/78GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/78GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/78GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/78GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/78inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/78inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/79GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/79GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/79GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/79GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/79inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/79inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/7GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/7GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/7GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/7GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/7inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/7inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/80GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/80GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/80GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/80GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/80inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/80inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/81GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/81GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/81GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/81GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/81inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/81inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/82GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/82GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/82GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/82GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/82inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/82inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/83GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/83GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/83GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/83GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/83inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/83inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/84GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/84GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/84GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/84GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/84inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/84inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/85GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/85GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/85GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/85GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/85inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/85inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/86GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/86GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/86GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/86GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/86inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/86inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/87GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/87GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/87GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/87GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/87inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/87inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/88GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/88GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/88GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/88GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/88inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/88inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/89GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/89GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/89GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/89GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/89inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/89inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/8GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/8GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/8GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/8GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/8inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/8inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/90GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/90GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/90GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/90GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/90inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/90inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/91GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/91GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/91GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/91GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/91inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/91inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/92GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/92GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/92GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/92GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/92inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/92inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/93GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/93GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/93GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/93GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/93inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/93inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/94GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/94GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/94GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/94GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/94inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/94inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/95GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/95GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/95GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/95GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/95inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/95inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/96GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/96GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/96inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/96inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/97GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/97GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/97inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/97inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/98GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/98GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/98inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/98inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/99GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/99GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/99inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/99inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/9GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/9GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/9GGX_Thin_Glass_Ess_32x32x96.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/9GGX_Thin_Glass_Ess_32x32x96.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GGX/Glass/9inv_GGX_Glass_Ess_256x16x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GGX/Glass/9inv_GGX_Glass_Ess_256x16x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/0Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/0Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/100Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/100Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/101Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/101Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/102Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/102Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/103Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/103Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/104Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/104Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/105Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/105Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/106Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/106Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/107Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/107Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/108Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/108Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/109Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/109Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/10Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/10Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/110Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/110Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/111Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/111Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/112Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/112Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/113Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/113Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/114Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/114Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/115Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/115Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/116Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/116Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/117Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/117Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/118Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/118Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/119Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/119Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/11Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/11Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/120Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/120Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/121Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/121Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/122Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/122Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/123Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/123Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/124Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/124Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/125Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/125Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/126Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/126Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/127Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/127Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/12Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/12Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/13Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/13Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/14Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/14Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/15Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/15Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/16Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/16Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/17Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/17Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/18Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/18Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/19Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/19Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/1Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/1Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/20Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/20Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/21Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/21Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/22Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/22Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/23Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/23Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/24Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/24Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/25Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/25Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/26Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/26Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/27Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/27Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/28Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/28Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/29Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/29Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/2Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/2Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/30Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/30Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/31Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/31Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/32Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/32Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/33Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/33Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/34Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/34Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/35Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/35Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/36Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/36Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/37Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/37Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/38Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/38Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/39Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/39Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/3Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/3Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/40Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/40Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/41Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/41Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/42Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/42Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/43Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/43Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/44Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/44Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/45Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/45Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/46Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/46Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/47Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/47Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/48Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/48Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/49Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/49Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/4Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/4Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/50Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/50Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/51Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/51Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/52Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/52Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/53Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/53Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/54Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/54Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/55Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/55Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/56Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/56Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/57Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/57Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/58Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/58Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/59Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/59Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/5Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/5Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/60Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/60Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/61Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/61Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/62Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/62Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/63Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/63Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/64Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/64Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/65Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/65Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/66Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/66Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/67Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/67Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/68Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/68Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/69Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/69Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/6Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/6Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/70Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/70Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/71Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/71Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/72Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/72Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/73Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/73Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/74Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/74Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/75Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/75Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/76Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/76Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/77Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/77Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/78Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/78Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/79Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/79Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/7Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/7Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/80Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/80Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/81Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/81Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/82Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/82Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/83Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/83Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/84Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/84Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/85Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/85Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/86Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/86Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/87Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/87Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/88Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/88Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/89Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/89Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/8Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/8Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/90Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/90Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/91Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/91Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/92Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/92Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/93Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/93Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/94Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/94Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/95Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/95Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/96Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/96Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/97Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/97Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/98Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/98Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/99Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/99Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/BRDFsData/GlossyDielectrics/9Glossy_Ess_128x64x128.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/BRDFsData/GlossyDielectrics/9Glossy_Ess_128x64x128.hdr -------------------------------------------------------------------------------- /data/GLTFs/cornell_pbr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/cornell_pbr.bin -------------------------------------------------------------------------------- /data/GLTFs/multi-dispersion.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/multi-dispersion.bin -------------------------------------------------------------------------------- /data/GLTFs/nested-dielectrics-complex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/nested-dielectrics-complex.bin -------------------------------------------------------------------------------- /data/GLTFs/nested-dielectrics.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/nested-dielectrics.bin -------------------------------------------------------------------------------- /data/GLTFs/the-white-room-low.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room-low.bin -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/Shade-paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/Shade-paper.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/WoodFloor051_2K-JPG_Color_reduced.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/WoodFloor051_2K-JPG_Color_reduced.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/apple.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/book-spines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/book-spines.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/carpet-text3b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/carpet-text3b.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/cushion-green-circles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/cushion-green-circles.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/cushion-purple-yellow-stripe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/cushion-purple-yellow-stripe.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/cushion-stripe-purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/cushion-stripe-purple.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/magazine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/magazine.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/photo1.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/photo2.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/photo3.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/photo4.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/pic3.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/pic5wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/pic5wide.jpg -------------------------------------------------------------------------------- /data/GLTFs/the-white-room/shade-stripes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/GLTFs/the-white-room/shade-stripes.jpg -------------------------------------------------------------------------------- /data/Skyspheres/evening_road_01_puresky_2k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/data/Skyspheres/evening_road_01_puresky_2k.hdr -------------------------------------------------------------------------------- /src/Device/includes/Hash.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef DEVICE_HASH_H 7 | #define DEVICE_HASH_H 8 | 9 | #include 10 | 11 | HIPRT_HOST_DEVICE HIPRT_INLINE unsigned int wang_hash(unsigned int seed) 12 | { 13 | seed = (seed ^ 61) ^ (seed >> 16); 14 | seed *= 9; 15 | seed = seed ^ (seed >> 4); 16 | seed *= 0x27d4eb2d; 17 | seed = seed ^ (seed >> 15); 18 | return seed; 19 | } 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /src/Experimentations/TestCopyKernelAlignment.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef EXPERIMENTATIONS_TEST_COPY_KERNEL_ALIGNMENT_H 7 | #define EXPERIMENTATIONS_TEST_COPY_KERNEL_ALIGNMENT_H 8 | 9 | void TestCopyKernelAlignment(); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /src/Experimentations/TestCopyKernelRestrict.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef EXPERIMENTATIONS_TEST_COPY_KERNEL_RESTRICT_H 7 | #define EXPERIMENTATIONS_TEST_COPY_KERNEL_RESTRICT_H 8 | 9 | void TestCopyKernelRestrict(); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /src/HostDeviceCommon/KernelOptions/Common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef HOST_DEVICE_COMMON_KERNEL_OPTIONS_COMMON_H 7 | #define HOST_DEVICE_COMMON_KERNEL_OPTIONS_COMMON_H 8 | 9 | #define KERNEL_OPTION_FALSE 0 10 | #define KERNEL_OPTION_TRUE 1 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /src/HostDeviceCommon/PathRussianRoulette.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef HOST_DEVICE_COMMON_PATH_RUSSIAN_ROULETTE_H 7 | #define HOST_DEVICE_COMMON_PATH_RUSSIAN_ROULETTE_H 8 | 9 | enum PathRussianRoulette 10 | { 11 | MAX_THROUGHPUT, 12 | ARNOLD_2014 13 | }; 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /src/Renderer/BVHConstants.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef BVH_CONSTANTS_H 7 | #define BVH_CONSTANTS_H 8 | 9 | struct BVHConstants 10 | { 11 | static constexpr int FLATTENED_BVH_MAX_STACK_SIZE = 100000; 12 | 13 | static constexpr int PLANES_COUNT = 7; 14 | static constexpr int MAX_TRIANGLES_PER_LEAF = 8; 15 | }; 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /src/Renderer/HardwareAccelerationSupport.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef HARDWARE_ACCELERATION_SUPPORT_H 7 | #define HARDWARE_ACCELERATION_SUPPORT_H 8 | 9 | enum HardwareAccelerationSupport 10 | { 11 | SUPPORTED, 12 | AMD_UNSUPPORTED, 13 | NVIDIA_UNSUPPORTED 14 | }; 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /src/Scene/CameraRotationType.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef CAMERA_ROTATION_TYPE_H 7 | #define CAMERA_ROTATION_TYPE_H 8 | 9 | enum CameraRotationType 10 | { 11 | SECONDS_PER_ROTATION, 12 | DEGREES_PER_FRAME 13 | }; 14 | 15 | #endif -------------------------------------------------------------------------------- /src/Threads/ThreadState.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef THREAD_STATE_H 7 | #define THREAD_STATE_H 8 | 9 | struct TextureLoadingThreadState 10 | { 11 | std::vector> texture_paths; 12 | std::vector material_indices; 13 | 14 | std::string scene_filepath; 15 | }; 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /src/UI/ImGui/ImGuiLoggerSeverity.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | #ifndef IMGUI_LOGGER_SEVERITY_H 7 | #define IMGUI_LOGGER_SEVERITY_H 8 | 9 | enum ImGuiLoggerSeverity 10 | { 11 | IMGUI_LOGGER_INFO, 12 | IMGUI_LOGGER_WARNING, 13 | IMGUI_LOGGER_ERROR 14 | }; 15 | 16 | #endif -------------------------------------------------------------------------------- /src/UI/ImGui/ImGuiRendererPerformancePreset.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2024 Tom Clabault. GNU GPL3 license. 3 | * GNU GPL3 license copy: https://www.gnu.org/licenses/gpl-3.0.txt 4 | */ 5 | 6 | 7 | #ifndef IMGUI_RENDERER_PERFORMANCE_PRESET_H 8 | #define IMGUI_RENDERER_PERFORMANCE_PRESET_H 9 | 10 | enum ImGuiRendererPerformancePreset 11 | { 12 | PERF_PRESET_NONE, 13 | PERF_PRESET_FASTEST, 14 | PERF_PRESET_FAST, 15 | PERF_PRESET_MEDIUM, 16 | PERF_PRESET_HIGH_QUALITY 17 | }; 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | //! Workaround for compatibility with other libraries 4 | #ifdef max 5 | #undef max 6 | #endif 7 | 8 | //! Workaround for compatibility with other libraries 9 | #ifdef min 10 | #undef min 11 | #endif 12 | 13 | //! Workaround for Android 14 | #ifdef isnan 15 | #undef isnan 16 | #endif 17 | 18 | //! Workaround for Android 19 | #ifdef isinf 20 | #undef isinf 21 | #endif 22 | 23 | //! Workaround for Chrone Native Client 24 | #ifdef log2 25 | #undef log2 26 | #endif 27 | 28 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- 1 | namespace glm{ 2 | namespace detail 3 | { 4 | 5 | }//namespace detail 6 | }//namespace glm 7 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/thirdparties/glm/glm/detail/func_trigonometric_simd.inl -------------------------------------------------------------------------------- /thirdparties/glm/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- 1 | namespace glm{ 2 | namespace detail 3 | { 4 | 5 | }//namespace detail 6 | }//namespace glm 7 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "setup.hpp" 4 | 5 | namespace glm{ 6 | namespace detail 7 | { 8 | typedef short hdata; 9 | 10 | GLM_FUNC_DECL float toFloat32(hdata value); 11 | GLM_FUNC_DECL hdata toFloat16(float const& value); 12 | 13 | }//namespace detail 14 | }//namespace glm 15 | 16 | #include "type_half.inl" 17 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | 3 | namespace glm 4 | { 5 | 6 | }//namespace glm 7 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/matrix_double2x3.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_mat2x3.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_matrix 10 | /// @{ 11 | 12 | /// 2 columns of 3 components matrix of double-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices 15 | typedef mat<2, 3, double, defaultp> dmat2x3; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/matrix_double2x4.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_mat2x4.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_matrix 10 | /// @{ 11 | 12 | /// 2 columns of 4 components matrix of double-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices 15 | typedef mat<2, 4, double, defaultp> dmat2x4; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/matrix_float2x3.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_mat2x3.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_matrix 10 | /// @{ 11 | 12 | /// 2 columns of 3 components matrix of single-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices 15 | typedef mat<2, 3, float, defaultp> mat2x3; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/matrix_float2x4.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_mat2x4.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_matrix 10 | /// @{ 11 | 12 | /// 2 columns of 4 components matrix of single-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices 15 | typedef mat<2, 4, float, defaultp> mat2x4; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- 1 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 2 | 3 | namespace glm{ 4 | namespace detail 5 | { 6 | template 7 | struct compute_dot, float, true> 8 | { 9 | static GLM_FUNC_QUALIFIER float call(qua const& x, qua const& y) 10 | { 11 | return _mm_cvtss_f32(glm_vec1_dot(x.data, y.data)); 12 | } 13 | }; 14 | }//namespace detail 15 | }//namespace glm 16 | 17 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 18 | 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/thirdparties/glm/glm/ext/scalar_packing.inl -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_bool2.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec2.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 2 components vector of boolean. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<2, bool, defaultp> bvec2; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_bool3.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec3.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 3 components vector of boolean. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<3, bool, defaultp> bvec3; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_bool4.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec4.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 4 components vector of boolean. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<4, bool, defaultp> bvec4; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_double2.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec2.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 2 components vector of double-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<2, double, defaultp> dvec2; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_double3.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec3.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 3 components vector of double-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<3, double, defaultp> dvec3; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_double4.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec4.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 4 components vector of double-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<4, double, defaultp> dvec4; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_float2.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec2.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 2 components vector of single-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<2, float, defaultp> vec2; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_float3.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec3.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 3 components vector of single-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<3, float, defaultp> vec3; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_float4.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec4.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 4 components vector of single-precision floating-point numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<4, float, defaultp> vec4; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_int2.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec2.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 2 components vector of signed integer numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<2, int, defaultp> ivec2; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_int3.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec3.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 3 components vector of signed integer numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<3, int, defaultp> ivec3; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_int4.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec4.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 4 components vector of signed integer numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<4, int, defaultp> ivec4; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/thirdparties/glm/glm/ext/vector_packing.inl -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_uint2.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec2.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 2 components vector of unsigned integer numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<2, unsigned int, defaultp> uvec2; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_uint3.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec3.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 3 components vector of unsigned integer numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<3, unsigned int, defaultp> uvec3; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/ext/vector_uint4.hpp 3 | 4 | #pragma once 5 | #include "../detail/type_vec4.hpp" 6 | 7 | namespace glm 8 | { 9 | /// @addtogroup core_vector 10 | /// @{ 11 | 12 | /// 4 components vector of unsigned integer numbers. 13 | /// 14 | /// @see GLSL 4.20.8 specification, section 4.1.5 Vectors 15 | typedef vec<4, unsigned int, defaultp> uvec4; 16 | 17 | /// @} 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- 1 | #include "../geometric.hpp" 2 | #include "../trigonometric.hpp" 3 | #include "../matrix.hpp" 4 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/thirdparties/glm/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_float_normalize 2 | 3 | #include 4 | 5 | namespace glm 6 | { 7 | template 8 | GLM_FUNC_QUALIFIER vec floatNormalize(vec const& v) 9 | { 10 | return vec(v) / static_cast(std::numeric_limits::max()); 11 | } 12 | 13 | }//namespace glm 14 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_log_base 2 | 3 | namespace glm 4 | { 5 | template 6 | GLM_FUNC_QUALIFIER genType log(genType const& x, genType const& base) 7 | { 8 | return glm::log(x) / glm::log(base); 9 | } 10 | 11 | template 12 | GLM_FUNC_QUALIFIER vec log(vec const& x, vec const& base) 13 | { 14 | return glm::log(x) / glm::log(base); 15 | } 16 | }//namespace glm 17 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_mixed_product 2 | 3 | namespace glm 4 | { 5 | template 6 | GLM_FUNC_QUALIFIER T mixedProduct 7 | ( 8 | vec<3, T, Q> const& v1, 9 | vec<3, T, Q> const& v2, 10 | vec<3, T, Q> const& v3 11 | ) 12 | { 13 | return dot(cross(v1, v2), v3); 14 | } 15 | }//namespace glm 16 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_normal 2 | 3 | namespace glm 4 | { 5 | template 6 | GLM_FUNC_QUALIFIER vec<3, T, Q> triangleNormal 7 | ( 8 | vec<3, T, Q> const& p1, 9 | vec<3, T, Q> const& p2, 10 | vec<3, T, Q> const& p3 11 | ) 12 | { 13 | return normalize(cross(p1 - p2, p1 - p3)); 14 | } 15 | }//namespace glm 16 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_optimum_pow 2 | 3 | namespace glm 4 | { 5 | template 6 | GLM_FUNC_QUALIFIER genType pow2(genType const& x) 7 | { 8 | return x * x; 9 | } 10 | 11 | template 12 | GLM_FUNC_QUALIFIER genType pow3(genType const& x) 13 | { 14 | return x * x * x; 15 | } 16 | 17 | template 18 | GLM_FUNC_QUALIFIER genType pow4(genType const& x) 19 | { 20 | return (x * x) * (x * x); 21 | } 22 | }//namespace glm 23 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_perpendicular 2 | 3 | namespace glm 4 | { 5 | template 6 | GLM_FUNC_QUALIFIER genType perp(genType const& x, genType const& Normal) 7 | { 8 | return x - proj(x, Normal); 9 | } 10 | }//namespace glm 11 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_projection 2 | 3 | namespace glm 4 | { 5 | template 6 | GLM_FUNC_QUALIFIER genType proj(genType const& x, genType const& Normal) 7 | { 8 | return glm::dot(x, Normal) / glm::dot(Normal, Normal) * Normal; 9 | } 10 | }//namespace glm 11 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_texture 2 | 3 | namespace glm 4 | { 5 | template 6 | inline T levels(vec const& Extent) 7 | { 8 | return glm::log2(compMax(Extent)) + static_cast(1); 9 | } 10 | 11 | template 12 | inline T levels(T Extent) 13 | { 14 | return vec<1, T, defaultp>(Extent).x; 15 | } 16 | }//namespace glm 17 | 18 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_wrap 2 | 3 | namespace glm 4 | { 5 | 6 | }//namespace glm 7 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat2x2.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double2x2.hpp" 6 | #include "./ext/matrix_double2x2_precision.hpp" 7 | #include "./ext/matrix_float2x2.hpp" 8 | #include "./ext/matrix_float2x2_precision.hpp" 9 | 10 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat2x3.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double2x3.hpp" 6 | #include "./ext/matrix_double2x3_precision.hpp" 7 | #include "./ext/matrix_float2x3.hpp" 8 | #include "./ext/matrix_float2x3_precision.hpp" 9 | 10 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat2x4.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double2x4.hpp" 6 | #include "./ext/matrix_double2x4_precision.hpp" 7 | #include "./ext/matrix_float2x4.hpp" 8 | #include "./ext/matrix_float2x4_precision.hpp" 9 | 10 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat3x2.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double3x2.hpp" 6 | #include "./ext/matrix_double3x2_precision.hpp" 7 | #include "./ext/matrix_float3x2.hpp" 8 | #include "./ext/matrix_float3x2_precision.hpp" 9 | 10 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat3x3.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double3x3.hpp" 6 | #include "./ext/matrix_double3x3_precision.hpp" 7 | #include "./ext/matrix_float3x3.hpp" 8 | #include "./ext/matrix_float3x3_precision.hpp" 9 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat3x4.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double3x4.hpp" 6 | #include "./ext/matrix_double3x4_precision.hpp" 7 | #include "./ext/matrix_float3x4.hpp" 8 | #include "./ext/matrix_float3x4_precision.hpp" 9 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat4x2.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double4x2.hpp" 6 | #include "./ext/matrix_double4x2_precision.hpp" 7 | #include "./ext/matrix_float4x2.hpp" 8 | #include "./ext/matrix_float4x2_precision.hpp" 9 | 10 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat4x3.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double4x3.hpp" 6 | #include "./ext/matrix_double4x3_precision.hpp" 7 | #include "./ext/matrix_float4x3.hpp" 8 | #include "./ext/matrix_float4x3_precision.hpp" 9 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/mat4x4.hpp 3 | 4 | #pragma once 5 | #include "./ext/matrix_double4x4.hpp" 6 | #include "./ext/matrix_double4x4_precision.hpp" 7 | #include "./ext/matrix_float4x4.hpp" 8 | #include "./ext/matrix_float4x4_precision.hpp" 9 | 10 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/experimental.h 3 | 4 | #pragma once 5 | 6 | #include "platform.h" 7 | 8 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | 10 | GLM_FUNC_QUALIFIER glm_f32vec4 glm_vec1_sqrt_lowp(glm_f32vec4 x) 11 | { 12 | return _mm_mul_ss(_mm_rsqrt_ss(x), x); 13 | } 14 | 15 | GLM_FUNC_QUALIFIER glm_f32vec4 glm_vec4_sqrt_lowp(glm_f32vec4 x) 16 | { 17 | return _mm_mul_ps(_mm_rsqrt_ps(x), x); 18 | } 19 | 20 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 21 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/packing.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/trigonometric.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | 10 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/vector_relational.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec2.hpp 3 | 4 | #pragma once 5 | #include "./ext/vector_bool2.hpp" 6 | #include "./ext/vector_bool2_precision.hpp" 7 | #include "./ext/vector_float2.hpp" 8 | #include "./ext/vector_float2_precision.hpp" 9 | #include "./ext/vector_double2.hpp" 10 | #include "./ext/vector_double2_precision.hpp" 11 | #include "./ext/vector_int2.hpp" 12 | #include "./ext/vector_int2_sized.hpp" 13 | #include "./ext/vector_uint2.hpp" 14 | #include "./ext/vector_uint2_sized.hpp" 15 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec3.hpp 3 | 4 | #pragma once 5 | #include "./ext/vector_bool3.hpp" 6 | #include "./ext/vector_bool3_precision.hpp" 7 | #include "./ext/vector_float3.hpp" 8 | #include "./ext/vector_float3_precision.hpp" 9 | #include "./ext/vector_double3.hpp" 10 | #include "./ext/vector_double3_precision.hpp" 11 | #include "./ext/vector_int3.hpp" 12 | #include "./ext/vector_int3_sized.hpp" 13 | #include "./ext/vector_uint3.hpp" 14 | #include "./ext/vector_uint3_sized.hpp" 15 | -------------------------------------------------------------------------------- /thirdparties/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec4.hpp 3 | 4 | #pragma once 5 | #include "./ext/vector_bool4.hpp" 6 | #include "./ext/vector_bool4_precision.hpp" 7 | #include "./ext/vector_float4.hpp" 8 | #include "./ext/vector_float4_precision.hpp" 9 | #include "./ext/vector_double4.hpp" 10 | #include "./ext/vector_double4_precision.hpp" 11 | #include "./ext/vector_int4.hpp" 12 | #include "./ext/vector_int4_sized.hpp" 13 | #include "./ext/vector_uint4.hpp" 14 | #include "./ext/vector_uint4_sized.hpp" 15 | 16 | -------------------------------------------------------------------------------- /thirdparties/opengl/bin/GLEW/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/thirdparties/opengl/bin/GLEW/glew32.dll -------------------------------------------------------------------------------- /thirdparties/opengl/lib/GLEW/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/thirdparties/opengl/lib/GLEW/glew32.lib -------------------------------------------------------------------------------- /thirdparties/opengl/lib/GLFW/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomClabault/HIPRT-Path-Tracer/5e651098adb5050926956d4a2f82efcabbed0abc/thirdparties/opengl/lib/GLFW/glfw3.lib -------------------------------------------------------------------------------- /thirdparties/tinyexr/tinyexr.cc: -------------------------------------------------------------------------------- 1 | #if defined(_WIN32) 2 | #ifndef NOMINMAX 3 | #define NOMINMAX 4 | #endif 5 | #endif 6 | 7 | #define TINYEXR_IMPLEMENTATION 8 | #include "tinyexr.h" 9 | --------------------------------------------------------------------------------