├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── auto-merge-hlsl.yml │ ├── clang-x64.yml │ ├── clang-x86.yml │ ├── nightly.yml │ ├── ninja-x64.yml │ ├── ninja-x86.yml │ ├── snapshot.yml │ ├── visual-studio-x64.yml │ └── visual-studio-x86.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── docs └── CONTRIBUTING.md ├── embedfile.cpp ├── external └── .clang-tidy ├── include └── crc32_hash.hpp ├── make-sln.cmd ├── notes.md ├── scripts ├── deploy-early-access.cmd ├── deploy-early-access.ps1 └── helper-module.psm1 └── src ├── addons ├── devkit │ └── addon.cpp └── fpslimiter │ └── addon.cpp ├── decompiler └── cli.cpp ├── games ├── 1000xresist │ ├── DICE.hlsl │ ├── LUT3DBaker_0x47A1239F.cs_5_0.hlsl │ ├── LUT3dBaker_0x1674A947.cs_5_0.hlsl │ ├── UItext_0x55B0DCB7.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── lensflare_0x98ADAF37.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── text_0x89BA88BC.ps_4_0.hlsl │ ├── tonemapper_0x756E88B2.ps_4_0.hlsl │ ├── tonemapper_0x9DBEB2FA.ps_4_0.hlsl │ ├── tonemapper_0xA5C1A485.ps_4_0.hlsl │ ├── tonemapper_0xA771E2C6.ps_4_0.hlsl │ ├── tonemapper_0xAF565E99.ps_4_0.hlsl │ └── uidefault_0x5439FB55.ps_4_0.hlsl ├── acecombat7 │ ├── Lutbuilder_InGame0_0xCA80A1BE.ps_5_0.hlsl │ ├── Lutbuilder_MainMenu_0x2179DAD2.ps_5_0.hlsl │ ├── Output_InGame0_0x7A572E8F.ps_5_0.hlsl │ ├── Output_InGame1_0xE5CF5B91.ps_5_0.hlsl │ ├── Output_MainMenu_0xE227F502.ps_5_0.hlsl │ ├── UI_Compose_0x759F7DBB.ps_5_0.hlsl │ ├── UI_Compose_InGame_0xDC6E4B0E.ps_5_0.hlsl │ ├── UI_Draw_0xC9564C2A.ps_5_0.hlsl │ ├── UI_Final_0x53ED6C97.ps_5_0.hlsl │ ├── UI_Holograms_0x1E252703.ps_5_0.hlsl │ ├── UI_Hud_0x541EC7AA.ps_5_0.hlsl │ ├── UI_Icons02_0xF51185E9.ps_5_0.hlsl │ ├── UI_Icons_0x5E0455BC.ps_5_0.hlsl │ ├── UI_MainMenu01_0x79821615.ps_5_0.hlsl │ ├── UI_MainMenu02_0x41FB3106.ps_5_0.hlsl │ ├── UI_MainMenu_Blur_0x13F1D13B.ps_5_0.hlsl │ ├── UI_MenuBloom_0xA8735463.ps_5_0.hlsl │ ├── UI_PreRendered_Video_0x645484C3.ps_5_0.hlsl │ ├── UI_Unknown00_0x6165FC93.ps_5_0.hlsl │ ├── addon.cpp │ ├── shared.h │ └── xx_0x82BED845.ps_5_0.hlsl ├── aisomniumfiles │ ├── UI_0xFEB3E510.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── flowchart_0xED466B41.ps_4_0.hlsl │ ├── map_0x3F47A4BB.ps_4_0.hlsl │ ├── output_0xCE0AF0C9.ps_4_0.hlsl │ ├── overlay_0xEE94CA0F.ps_4_0.hlsl │ ├── postprocess_0x224059A1.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uberpost_0x46AE5D9D.ps_4_0.hlsl │ ├── uberpost_0xEE5CA39C.ps_4_0.hlsl │ └── videos_0x8A6BCB4C.ps_4_0.hlsl ├── alicemadnessreturns │ ├── addon.cpp │ ├── common.hlsl │ ├── dtm_0x0860D48E.ps_3_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── tonemap_0x5D438293.ps_3_0.hlsl │ ├── tonemap_ppoff_0xAF5AC635.ps_3_0.hlsl │ └── video_0x6BE54F95.ps_3_0.hlsl ├── alienisolation │ ├── addon.cpp │ ├── aliasisolation │ │ └── sharpen_Alias_Isolation_0x7E16EE16.ps_4_0.hlsl │ ├── common.hlsl │ ├── final_SMAA_T1x_0x05F61FE8.ps_5_0.hlsl │ ├── final_SMAA_T2x_0x2D6BBE3A.ps_5_0.hlsl │ ├── include │ │ ├── CBuffer_DefaultPSC.hlsl │ │ ├── CBuffer_DefaultXSC.hlsl │ │ └── CBuffer_UbershaderXSC.hlsl │ ├── lens_flare_0x8EA31781.ps_5_0.hlsl │ ├── shared.h │ ├── terminal_0xA090F460.ps_5_0.hlsl │ ├── tonemap.hlsl │ ├── tonemapshaders │ │ ├── tonemap_0x8AFBFA0F.ps_5_0.hlsl │ │ ├── tonemap_blood_0x0FE2C69C.ps_5_0.hlsl │ │ ├── tonemap_desat_0xC4C732B7.ps_5_0.hlsl │ │ ├── tonemap_desat_blood_0x793F6207.ps_5_0.hlsl │ │ ├── tonemap_dizzy_0x0646427B.ps_5_0.hlsl │ │ ├── tonemap_dizzy_blood_0xD29C360E.ps_5_0.hlsl │ │ ├── tonemap_dizzy_desat_blood_0x746E4324.ps_5_0.hlsl │ │ ├── tonemap_flashbang_0xEC6C0919.ps_5_0.hlsl │ │ └── tonemap_noblur_0x3282021C.ps_5_0.hlsl │ ├── uishaders │ │ ├── maybe_ui_0xECFC10A2.ps_5_0.hlsl │ │ ├── ui_0x335B9229.ps_5_0.hlsl │ │ ├── ui_0x72826F5B.ps_5_0.hlsl │ │ ├── ui_0x7560E408.ps_5_0.hlsl │ │ ├── ui_0xA0A0F573.ps_5_0.hlsl │ │ ├── ui_0xB95A4E01.ps_5_0.hlsl │ │ ├── ui_0xC38B68F9.ps_5_0.hlsl │ │ ├── ui_0xCC0C2DF3.ps_5_0.hlsl │ │ ├── ui_0xD7880DBE.ps_5_0.hlsl │ │ ├── ui_0xD98FBA78.ps_5_0.hlsl │ │ ├── ui_0xE7CF0218.ps_5_0.hlsl │ │ ├── ui_0xF1A79FBF.ps_5_0.hlsl │ │ ├── ui_0xF42FA869.ps_5_0.hlsl │ │ ├── ui_0xF7F77ABD.ps_5_0.hlsl │ │ ├── ui_digital_flashes_0x46CDBB69.ps_5_0.hlsl │ │ └── ui_digital_flashes_0xA6B73F9E.ps_5_0.hlsl │ ├── untestedtonemapshaders │ │ ├── 0x00A4168B.ps_5_0.hlsl │ │ ├── 0x05922218.ps_5_0.hlsl │ │ ├── 0x09C787D1.ps_5_0.hlsl │ │ ├── 0x0B2018BD.ps_5_0.hlsl │ │ ├── 0x13F1B0C2.ps_5_0.hlsl │ │ ├── 0x174A943A.ps_5_0.hlsl │ │ ├── 0x1C6423B6.ps_5_0.hlsl │ │ ├── 0x1FFE87AC.ps_5_0.hlsl │ │ ├── 0x2516994B.ps_5_0.hlsl │ │ ├── 0x2B9AC3F5.ps_5_0.hlsl │ │ ├── 0x2D0A2D3C.ps_5_0.hlsl │ │ ├── 0x2D2FD5CF.ps_5_0.hlsl │ │ ├── 0x32150225.ps_5_0.hlsl │ │ ├── 0x3872E94A.ps_5_0.hlsl │ │ ├── 0x3AD0660C.ps_5_0.hlsl │ │ ├── 0x3B3AEBE9.ps_5_0.hlsl │ │ ├── 0x3B9C6411.ps_5_0.hlsl │ │ ├── 0x4198B9C9.ps_5_0.hlsl │ │ ├── 0x4232CD40.ps_5_0.hlsl │ │ ├── 0x482D27BF.ps_5_0.hlsl │ │ ├── 0x4AF4FBBD.ps_5_0.hlsl │ │ ├── 0x53092D40.ps_5_0.hlsl │ │ ├── 0x57C8C5ED.ps_5_0.hlsl │ │ ├── 0x5C6CBB10.ps_5_0.hlsl │ │ ├── 0x5DA1F07C.ps_5_0.hlsl │ │ ├── 0x63B81F3E.ps_5_0.hlsl │ │ ├── 0x684EFA7F.ps_5_0.hlsl │ │ ├── 0x696EE0C3.ps_5_0.hlsl │ │ ├── 0x6B4D6066.ps_5_0.hlsl │ │ ├── 0x6D197C24.ps_5_0.hlsl │ │ ├── 0x6E6805B3.ps_5_0.hlsl │ │ ├── 0x72824EB3.ps_5_0.hlsl │ │ ├── 0x7AAE5175.ps_5_0.hlsl │ │ ├── 0x8530B19F.ps_5_0.hlsl │ │ ├── 0x882C9228.ps_5_0.hlsl │ │ ├── 0x8AF3B1CF.ps_5_0.hlsl │ │ ├── 0x8D475CF4.ps_5_0.hlsl │ │ ├── 0x8FF33C5A.ps_5_0.hlsl │ │ ├── 0x8FF37B42.ps_5_0.hlsl │ │ ├── 0x916A3EB9.ps_5_0.hlsl │ │ ├── 0x94C8C8AF.ps_5_0.hlsl │ │ ├── 0x992490D5.ps_5_0.hlsl │ │ ├── 0x9B1B7A3B.ps_5_0.hlsl │ │ ├── 0x9CB4B3B3.ps_5_0.hlsl │ │ ├── 0x9F3B0C2E.ps_5_0.hlsl │ │ ├── 0x9F66B097.ps_5_0.hlsl │ │ ├── 0x9FB8F2AF.ps_5_0.hlsl │ │ ├── 0xA12A3A52.ps_5_0.hlsl │ │ ├── 0xA165B1DC.ps_5_0.hlsl │ │ ├── 0xA3A1A206.ps_5_0.hlsl │ │ ├── 0xA42E7789.ps_5_0.hlsl │ │ ├── 0xBA70D4DE.ps_5_0.hlsl │ │ ├── 0xBF47BDEB.ps_5_0.hlsl │ │ ├── 0xC48C6BD8.ps_5_0.hlsl │ │ ├── 0xC5B944C4.ps_5_0.hlsl │ │ ├── 0xC90ABAEC.ps_5_0.hlsl │ │ ├── 0xCAFA3751.ps_5_0.hlsl │ │ ├── 0xCE613E94.ps_5_0.hlsl │ │ ├── 0xD22F7C27.ps_5_0.hlsl │ │ ├── 0xD8CB699A.ps_5_0.hlsl │ │ ├── 0xDB9A3B41.ps_5_0.hlsl │ │ ├── 0xE58DDDD3.ps_5_0.hlsl │ │ ├── 0xEC1225A1.ps_5_0.hlsl │ │ └── 0xF3C63133.ps_5_0.hlsl │ ├── unused │ │ ├── FXAA_0xEEEC0277.ps_5_0.hlsl │ │ ├── SMAA_1_0x23F15352.ps_5_0.hlsl │ │ ├── SMAA_2_0x007F7E1C.ps_5_0.hlsl │ │ ├── SMAA_T2x_0xD212ED15.ps_5_0.hlsl │ │ ├── TAA_Alias_Isolation_0xF32EAEEC.cs_5_0.hlsl │ │ ├── bloom_0xA8200442.ps_5_0.hlsl │ │ ├── chromAb_Alias_Isolation_0x32783A78.ps_4_0.hlsl │ │ └── glare_0x8E4A2326.ps_5_0.hlsl │ └── video_0x043049C7.ps_5_0.hlsl ├── angerfoot │ ├── LUT3DBaker_0x6EA48EC8.cs_5_0.hlsl │ ├── LUT3DBaker_0x995B320A.cs_5_0.hlsl │ ├── addon.cpp │ ├── colourcorrection_0x459D4153.ps_4_0.hlsl │ ├── common.hlsl │ ├── crosshair_0xBA4C6020.ps_4_0.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── fxaa_0xCC8B6ACF.ps_5_0.hlsl │ ├── shared.h │ ├── smaa_0x366EE13E.ps_5_0.hlsl │ ├── uberpost10_0xAFBE175C.ps_4_0.hlsl │ ├── uberpost12_0x272EB112.ps_4_0.hlsl │ ├── uberpost13_0xAF565E99.ps_4_0.hlsl │ ├── uberpost14_0xB8308863.ps_4_0.hlsl │ ├── uberpost15_0x9BC48214.ps_4_0.hlsl │ ├── uberpost16_0x43621B25.ps_4_0.hlsl │ ├── uberpost2_0xD25C43B1.ps_4_0.hlsl │ ├── uberpost3_0x063470DC.ps_4_0.hlsl │ ├── uberpost4_0x41B1FF38.ps_4_0.hlsl │ ├── uberpost5_0x8135A20B.ps_4_0.hlsl │ ├── uberpost6_0xFF4E4EF2.ps_4_0.hlsl │ ├── uberpost7_0x86E67F52.ps_4_0.hlsl │ ├── uberpost8_0x46D3ECE8.ps_4_0.hlsl │ ├── uberpost9_0xDB814E6C.ps_4_0.hlsl │ ├── uberpostTM_0x2706BB7A.ps_4_0.hlsl │ ├── uberpost_0xA46C1ECB.ps_4_0.hlsl │ └── videos_0x8A6BCB4C.ps_4_0.hlsl ├── animalwell │ ├── 00_scanlines_0x0076212D.ps_5_1.hlsl │ ├── 00_scanlines_0xD74047BB.ps_5_1.hlsl │ ├── 01_blit_0xE0BB1763.ps_5_1.hlsl │ ├── 02_composite_0xD970C03B.ps_5_1.hlsl │ ├── 03_bloom1_to_composite_0xB3ED2D64.ps_5_1.hlsl │ ├── 03_render_to_composite_0x20C9EB92.ps_5_1.hlsl │ ├── 05_composite_to_main_0xC4581181.ps_5_1.hlsl │ ├── 0x_composite_to_render_0x305E643E.ps_5_1.hlsl │ ├── 0x_copy_to_render_0xC2157826.ps_5_1.hlsl │ ├── 0x_fg_light_scale_0xCAC7BD52.ps_5_1.hlsl │ ├── 0x_render_to_fg_light_0x8FD21AD4.ps_5_1.hlsl │ ├── 0x_uv_light_to_render_0xF818E210.ps_5_1.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_1.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_1.hlsl ├── aptinnocence │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x16D5DBDF.ps_5_0.hlsl │ ├── shared.h │ ├── tonemap100_0xDD331269.ps_5_0.hlsl │ ├── tonemap101_0x0CC2075D.ps_5_0.hlsl │ ├── tonemap102_0x9C37C1D9.ps_5_0.hlsl │ ├── tonemap103_0x68333490.ps_5_0.hlsl │ ├── tonemap104_0xA900199B.ps_5_0.hlsl │ ├── tonemap105_0xBE0A06A2.ps_5_0.hlsl │ ├── tonemap106_0x5E5602ED.ps_5_0.hlsl │ ├── tonemap107_0x9BBD5A1C.ps_5_0.hlsl │ ├── tonemap108_0x46EA6003.ps_5_0.hlsl │ ├── tonemap109_0x2935CA66.ps_5_0.hlsl │ ├── tonemap10_0xABA0921A.ps_5_0.hlsl │ ├── tonemap110_0x17943E7D.ps_5_0.hlsl │ ├── tonemap111_0x26130AF5.ps_5_0.hlsl │ ├── tonemap112_0x6C3C86DA.ps_5_0.hlsl │ ├── tonemap113_0x816D20DE.ps_5_0.hlsl │ ├── tonemap114_0x11ACF198.ps_5_0.hlsl │ ├── tonemap115_0x54C8FFE4.ps_5_0.hlsl │ ├── tonemap116_0x77EEDC99.ps_5_0.hlsl │ ├── tonemap117_0xD18F2C1B.ps_5_0.hlsl │ ├── tonemap118_0xEC579C44.ps_5_0.hlsl │ ├── tonemap119_0xFC92FC89.ps_5_0.hlsl │ ├── tonemap11_0x50C4614E.ps_5_0.hlsl │ ├── tonemap120_0x357951FE.ps_5_0.hlsl │ ├── tonemap121_0xC6178618.ps_5_0.hlsl │ ├── tonemap122_0x6AEA77DC.ps_5_0.hlsl │ ├── tonemap123_0x66135DC8.ps_5_0.hlsl │ ├── tonemap124_0x8A35C041.ps_5_0.hlsl │ ├── tonemap125_0xCD0E9660.ps_5_0.hlsl │ ├── tonemap126_0xD7F6CD5F.ps_5_0.hlsl │ ├── tonemap127_0xF1BA177B.ps_5_0.hlsl │ ├── tonemap128_0x32E1A18D.ps_5_0.hlsl │ ├── tonemap129_0xD93DEDCD.ps_5_0.hlsl │ ├── tonemap12_0x4D27EFE4.ps_5_0.hlsl │ ├── tonemap130_0x3200CCB7.ps_5_0.hlsl │ ├── tonemap131_0xD18FD7EC.ps_5_0.hlsl │ ├── tonemap132_0x0B3A9151.ps_5_0.hlsl │ ├── tonemap133_0x7A8541CB.ps_5_0.hlsl │ ├── tonemap134_0x25F05C9E.ps_5_0.hlsl │ ├── tonemap135_0x6842A427.ps_5_0.hlsl │ ├── tonemap13_0x02752086.ps_5_0.hlsl │ ├── tonemap14_0x1E95DFAA.ps_5_0.hlsl │ ├── tonemap15_0x1EAC2755.ps_5_0.hlsl │ ├── tonemap16_0xB08D4631.ps_5_0.hlsl │ ├── tonemap17_0x40D01156.ps_5_0.hlsl │ ├── tonemap18_0x16B3D4EA.ps_5_0.hlsl │ ├── tonemap19_0x467FA5E8.ps_5_0.hlsl │ ├── tonemap20_0x6BD6CCF2.ps_5_0.hlsl │ ├── tonemap21_0x35394394.ps_5_0.hlsl │ ├── tonemap22_0x861391DC.ps_5_0.hlsl │ ├── tonemap23_0x2AD07A02.ps_5_0.hlsl │ ├── tonemap24_0x9051A7A9.ps_5_0.hlsl │ ├── tonemap25_0xEFEDB0D0.ps_5_0.hlsl │ ├── tonemap26_0xBCC02A24.ps_5_0.hlsl │ ├── tonemap27_0x0502EF4A.ps_5_0.hlsl │ ├── tonemap28_0x261B3413.ps_5_0.hlsl │ ├── tonemap29_0x5A4546CF.ps_5_0.hlsl │ ├── tonemap2_0xD7192C56.ps_5_0.hlsl │ ├── tonemap30_0x516235E2.ps_5_0.hlsl │ ├── tonemap31_0xD4020FAA.ps_5_0.hlsl │ ├── tonemap32_0x43BB0F12.ps_5_0.hlsl │ ├── tonemap33_0xCFDE7F0C.ps_5_0.hlsl │ ├── tonemap34_0x0BE823E1.ps_5_0.hlsl │ ├── tonemap35_0xDB64B2BB.ps_5_0.hlsl │ ├── tonemap36_0xCE06587B.ps_5_0.hlsl │ ├── tonemap37_0x01DE0656.ps_5_0.hlsl │ ├── tonemap38_0x74C290ED.ps_5_0.hlsl │ ├── tonemap39_0x844E8541.ps_5_0.hlsl │ ├── tonemap3_0xF2243AFF.ps_5_0.hlsl │ ├── tonemap40_0x4029D69D.ps_5_0.hlsl │ ├── tonemap41_0xA8D32BBB.ps_5_0.hlsl │ ├── tonemap42_0xE4863DCF.ps_5_0.hlsl │ ├── tonemap43_0xDB93313F.ps_5_0.hlsl │ ├── tonemap44_0xEB551321.ps_5_0.hlsl │ ├── tonemap45_0xB11E80DD.ps_5_0.hlsl │ ├── tonemap46_0x0A6C1673.ps_5_0.hlsl │ ├── tonemap47_0x00D8F487.ps_5_0.hlsl │ ├── tonemap48_0xF35DA225.ps_5_0.hlsl │ ├── tonemap49_0x25B30D2A.ps_5_0.hlsl │ ├── tonemap4_0x5AF10FE1.ps_5_0.hlsl │ ├── tonemap50_0x909013F7.ps_5_0.hlsl │ ├── tonemap51_0x9EE29144.ps_5_0.hlsl │ ├── tonemap52_0xC4C8EDDD.ps_5_0.hlsl │ ├── tonemap53_0xA12D3746.ps_5_0.hlsl │ ├── tonemap54_0x5DBD59DA.ps_5_0.hlsl │ ├── tonemap55_0x85D588FD.ps_5_0.hlsl │ ├── tonemap56_0x8CAD268A.ps_5_0.hlsl │ ├── tonemap57_0xB32D7EBA.ps_5_0.hlsl │ ├── tonemap58_0x035059E4.ps_5_0.hlsl │ ├── tonemap59_0x597228FA.ps_5_0.hlsl │ ├── tonemap5_0x33AB5404.ps_5_0.hlsl │ ├── tonemap60_0x255A96DB.ps_5_0.hlsl │ ├── tonemap61_0x63E8AB08.ps_5_0.hlsl │ ├── tonemap62_0x959A3AF5.ps_5_0.hlsl │ ├── tonemap63_0x066605F5.ps_5_0.hlsl │ ├── tonemap64_0xCE610F96.ps_5_0.hlsl │ ├── tonemap65_0xA01B0251.ps_5_0.hlsl │ ├── tonemap66_0x56D076D5.ps_5_0.hlsl │ ├── tonemap67_0x653632FF.ps_5_0.hlsl │ ├── tonemap68_0xB005022A.ps_5_0.hlsl │ ├── tonemap69_0xCA4C7F6E.ps_5_0.hlsl │ ├── tonemap6_0xBEE9C40B.ps_5_0.hlsl │ ├── tonemap70_0xE3F00C37.ps_5_0.hlsl │ ├── tonemap71_0x2339F1B3.ps_5_0.hlsl │ ├── tonemap72_0xC2956128.ps_5_0.hlsl │ ├── tonemap73_0xAEBDF7AA.ps_5_0.hlsl │ ├── tonemap74_0x0326D4CA.ps_5_0.hlsl │ ├── tonemap75_0x8DDB9366.ps_5_0.hlsl │ ├── tonemap76_0xADCA1C5F.ps_5_0.hlsl │ ├── tonemap77_0x4DAFFF3D.ps_5_0.hlsl │ ├── tonemap78_0x66FAEF88.ps_5_0.hlsl │ ├── tonemap79_0xAFB77956.ps_5_0.hlsl │ ├── tonemap7_0x71C6DC6C.ps_5_0.hlsl │ ├── tonemap80_0x8482C5D3.ps_5_0.hlsl │ ├── tonemap81_0xEFC1F305.ps_5_0.hlsl │ ├── tonemap82_0xBC6EF18F.ps_5_0.hlsl │ ├── tonemap83_0x555A8762.ps_5_0.hlsl │ ├── tonemap84_0x1565A261.ps_5_0.hlsl │ ├── tonemap85_0xC4E27A54.ps_5_0.hlsl │ ├── tonemap86_0x5FEF8F53.ps_5_0.hlsl │ ├── tonemap87_0xA2273C02.ps_5_0.hlsl │ ├── tonemap88_0x2F905EC9.ps_5_0.hlsl │ ├── tonemap89_0xEDC2424D.ps_5_0.hlsl │ ├── tonemap8_0xBFDFDB81.ps_5_0.hlsl │ ├── tonemap90_0x1BB00117.ps_5_0.hlsl │ ├── tonemap91_0x1DFA514E.ps_5_0.hlsl │ ├── tonemap92_0x7D28E177.ps_5_0.hlsl │ ├── tonemap93_0x85FB39A3.ps_5_0.hlsl │ ├── tonemap94_0x16080FD2.ps_5_0.hlsl │ ├── tonemap95_0x04126082.ps_5_0.hlsl │ ├── tonemap96_0x0B316689.ps_5_0.hlsl │ ├── tonemap97_0x24C4FD62.ps_5_0.hlsl │ ├── tonemap98_0xB3914B14.ps_5_0.hlsl │ ├── tonemap99_0x1345B102.ps_5_0.hlsl │ ├── tonemap9_0xA57B2A6D.ps_5_0.hlsl │ ├── tonemap_0xE6BB6773.ps_5_0.hlsl │ └── videos_0xB5DC058C.ps_5_0.hlsl ├── artofrally │ ├── LUT3DBakerACES_0x6EA48EC8.cs_5_0.hlsl │ ├── LUT3DBakerNeutral_0xBE750C14.cs_5_0.hlsl │ ├── UIdefault_0x2B868B21.ps_4_0.hlsl │ ├── UIdefaultfeather_0xD0559BEE.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── ppfinalFXAA_0xCC8B6ACF.ps_5_0.hlsl │ ├── ppfinalSMAA_0x366EE13E.ps_5_0.hlsl │ ├── shared.h │ ├── uberpost2_0x6D14F22A.ps_4_0.hlsl │ ├── uberpost3_0x18DC6A24.ps_4_0.hlsl │ ├── uberpost4_0xC63B24BB.ps_4_0.hlsl │ ├── uberpost5_0x7E2A04D8.ps_4_0.hlsl │ ├── uberpost6_0x957EC72A.ps_4_0.hlsl │ ├── uberpost7_0x272EB112.ps_4_0.hlsl │ ├── uberpost8_0xDB814E6C.ps_4_0.hlsl │ ├── uberpostTM_0x728A5929.ps_4_0.hlsl │ └── uberpost_0x6BE60185.ps_4_0.hlsl ├── asscreedmirage │ ├── CS_LUTRRTODT_0x77C715FE.cs_6_0.hlsl │ ├── CS_LUT_0xBA5F7436.cs_6_0.hlsl │ ├── LUTSRGBTOHDR_0x0E048C6D.cs_6_0.hlsl │ ├── PS_HDRLightingApply_0x49E19C67.ps_6_0.hlsl │ ├── PS_HDRLightingApply_0x550169DC.ps_6_0.hlsl │ ├── addon.cpp │ ├── shared.h │ └── tonemap.hlsli ├── asscreedorigins-odyssey │ ├── addon.cpp │ ├── common.hlsli │ ├── odyssey │ │ ├── ColorGradingGenerateLUT_0x9E1E0E79.cs_5_0.hlsl │ │ └── ColorGradingGenerateSRGBToHDRLUT_0xCAAA38A5.cs_5_0.hlsl │ ├── origins │ │ ├── ColorGradingGenerateLUT_0x373CE24C.cs_5_0.hlsl │ │ └── ColorGradingGenerateSRGBToHDRLUT_0xC2EBEA6D.cs_5_0.hlsl │ └── shared.h ├── asscreedshadows │ ├── CS_LUTSRGBTOHDR_0x2339C673.cs_6_0.hlsl │ ├── CS_LUTVIDEOSRGBTOHDR_0xBD751592.cs_6_0.hlsl │ ├── CS_LUT_0xF65A634F.cs_6_0.hlsl │ ├── CS_LUT_RRT_ODT_0x551A03A4.cs_6_0.hlsl │ ├── PS_HDRLightingApply_0xAF2BDFB5.ps_6_0.hlsl │ ├── PS_LocalToneMappingApply_0xAE262C33.ps_6_0.hlsl │ ├── addon.cpp │ ├── common.hlsli │ └── shared.h ├── asscreedvalhalla │ ├── LUTSRGBTOHDR_0xA91FBC05.cs_5_1.hlsl │ ├── LUTVIDEOSRGBTOHDR_0x2BDC4DF4.cs_5_1.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── main_LUTRRTODT_0xB054D3BA.cs_5_1.hlsl │ └── shared.h ├── atlasfallen │ ├── addon.cpp │ ├── common.hlsl │ ├── gamma_0x8C1B7709.ps_6_4.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_1.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_1.hlsl │ └── tonemap_0xE5959A21.ps_6_4.hlsl ├── avowed │ ├── addon.cpp │ ├── common.hlsl │ ├── composite_hdr_0xBF88A580.ps_6_6.hlsl │ ├── include │ │ └── aces.hlsl │ ├── lutbuilders │ │ ├── lutbuilder_0x484B4E2B.cs_6_6.hlsl │ │ ├── lutbuilder_0x81243B91.cs_6_6.hlsl │ │ ├── lutbuilder_0xAF588657.cs_6_6.hlsl │ │ ├── lutbuilder_0xCBE6F466.ps_6_6.hlsl │ │ └── lutbuilder_0xF890095A.cs_6_6.hlsl │ └── shared.h ├── awakenastralblade │ ├── LUT3DBakerNoTonemap_0x995B320A.cs_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── postfinal_0x366EE13E.ps_5_0.hlsl │ ├── shared.h │ ├── uberpost2_0x4757CDEB.ps_4_0.hlsl │ ├── uberpost3_0x41B1FF38.ps_4_0.hlsl │ ├── uberpost4_0xD25C43B1.ps_4_0.hlsl │ ├── uberpostTM_0xFF4E4EF2.ps_4_0.hlsl │ ├── uberpost_0xB8308863.ps_4_0.hlsl │ └── videos_0x8A6BCB4C.ps_4_0.hlsl ├── baldursgate3 │ ├── addon.cpp │ ├── color_grade_0xC6879C29.ps_5_0.hlsl │ ├── common.hlsli │ ├── shared.h │ ├── tonemap_lutbuilder_alternate_0x1B418D49.cs_5_0.hlsl │ ├── tonemap_lutbuilder_main_0x48E37C1E.cs_5_0.hlsl │ ├── tonemap_sample_lut_0x11C53BBA.ps_5_0.hlsl │ └── ui_0x36496C32.ps_5_0.hlsl ├── batmanak │ ├── addon.cpp │ ├── final00_0x2C2D0899.ps_5_0.hlsl │ ├── final01_0x5DAD9473.ps_5_0.hlsl │ ├── final13_0x8CBD2352.ps_5_0.hlsl │ ├── lensflare_0xB42A7F40.cs_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── tonemapper.hlsl │ ├── tonemapper00_0x978BFB09.cs_5_0.hlsl │ ├── tonemapper01_0xB6B56605.cs_5_0.hlsl │ ├── tonemapper02_0xF01CCC7E.cs_5_0.hlsl │ ├── tonemapper03_0x3A4E0B90.cs_5_0.hlsl │ ├── uncharted2extended.hlsli │ ├── unknown01_0xD6A846C8.ps_5_0.hlsl │ ├── unknown02_0x0C142BB2.ps_5_0.hlsl │ ├── unknown04_0x931FF3DD.ps_5_0.hlsl │ ├── unknown05_0x93793FBB.ps_5_0.hlsl │ ├── video2_0xCD1E0E4C.ps_5_0.hlsl │ └── video_0x12200F17.ps_5_0.hlsl ├── betonbrutal │ ├── LUT3DBaker_0x47A1239F.cs_5_0.hlsl │ ├── LumaSharpen_0x0E55C1C1.ps_4_0.hlsl │ ├── UIR_0x84D86903.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── postfinal_0xCC8B6ACF.ps_5_0.hlsl │ ├── shared.h │ ├── uberpost2_0x9CC447BF.ps_4_0.hlsl │ ├── uberpost3_0xC63B24BB.ps_4_0.hlsl │ ├── uberpost4_0xCF7B19D4.ps_4_0.hlsl │ └── uberpost_0x440F1911.ps_4_0.hlsl ├── beyondblue │ ├── Lut3DBaker.KGenLut3D_NeutralTonemap_0xBE750C14.cs_5_0.hlsl │ ├── Lut3DBaker_AcesTonemap_0x47A1239F.cs_5_0.hlsl │ ├── PostProcessing_FinalPass_0xABF2B519.ps_5_0.hlsl │ ├── PostProcessing_Uber_0x7A37E8BA.ps_4_0.hlsl │ ├── PostProcessing_Uber_0xAF565E99.ps_4_0.hlsl │ ├── PostProcessing_Uber_0xAFBE175C.ps_4_0.hlsl │ ├── PostProcessing_Uber_0xD25C43B1.ps_4_0.hlsl │ ├── ScannerPost_0x62B04FA9.ps_4_0.hlsl │ ├── Swapchain_BackBuffer_0x20133A8B.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsli │ ├── shared.h │ ├── tonemap.hlsli │ └── uishaders │ │ ├── Midnight_Bread_Crumb_UI_0x9232F9CC.ps_4_0.hlsl │ │ ├── TextMeshPro__Distance_Field_0x4F036BB9.ps_4_0.hlsl │ │ ├── TextMeshPro__Distance_Field_0x55B0DCB7.ps_4_0.hlsl │ │ ├── TextMeshPro__Distance_Field_0x915C6643.ps_4_0.hlsl │ │ ├── TextMeshPro__Distance_Field_0xC1457489.ps_4_0.hlsl │ │ ├── TextMeshPro__Mobile__Distance_Field_0xC8B9F878.ps_4_0.hlsl │ │ ├── UI_0x04615C32.ps_4_0.hlsl │ │ ├── UI_0x066C98CB.ps_4_0.hlsl │ │ ├── UI_0x510352D9.ps_4_0.hlsl │ │ └── UI_0x8E2521B8.ps_4_0.hlsl ├── bge20 │ ├── 00_ui_0x0F50F420.ps_6_2.hlsl │ ├── 01_render_0x926870A7.ps_6_2.hlsl │ ├── 02_bloom_0xF5D62886.ps_6_2.hlsl │ ├── addon.cpp │ └── shared.h ├── bioshock-alt │ ├── 0x6457104F.ps_4_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── bioshock │ ├── AntiAliasing_0xEC834D82.ps_4_0.hlsl │ ├── Bloom_Tonemap_0x6457104F.ps_4_0.hlsl │ ├── Fog2_0x0C454543.ps_4_0.hlsl │ ├── Fog3_0x3F8A5A79.ps_4_0.hlsl │ ├── Fog4_0x64B4F8D8.ps_4_0.hlsl │ ├── Fog5_0x21303C74.ps_4_0.hlsl │ ├── Fog6_0x63693A7F.ps_4_0.hlsl │ ├── Fog_0xDAA8E1E9.ps_4_0.hlsl │ ├── X_Final_0xFFFFFFFD.vs_5_0.hlsl │ ├── X_Final_0xFFFFFFFE.ps_5_0.hlsl │ ├── addon.cpp │ └── shared.h ├── bladesoffire │ ├── addon.cpp │ ├── final_0x1C9E27B4.ps_6_0.hlsl │ ├── shared.h │ └── tonemapper_0x686F735B.ps_6_0.hlsl ├── bmw │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0xA6EBE600.ps_6_6.hlsl │ ├── lutbuilder_0x2136F151.ps_6_6.hlsl │ ├── lutbuilder_0x22FF7D28.ps_6_6.hlsl │ ├── lutbuilder_0xA43658B6.ps_6_6.hlsl │ ├── lutbuilder_0xBFA7B92F.ps_6_6.hlsl │ ├── lutbuilder_0xE1970A14.ps_6_6.hlsl │ └── shared.h ├── borderlands4 │ ├── addon.cpp │ ├── composite │ │ ├── composite.hlsli │ │ ├── composite_HDR10_0xDEB53BDB.ps_6_6.hlsl │ │ └── lilium_rcas.hlsl │ ├── inventory │ │ └── inventory_0x4877BC4C.ps_6_6.hlsl │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsli │ │ ├── lutbuilder_0xCD08EC7B.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsli │ ├── output │ │ └── output_0x49903A53.ps_6_6.hlsl │ └── shared.h ├── borderlandsgotyenhanced │ ├── addon.cpp │ ├── common.hlsl │ ├── flare_out_0x010371F2.ps_5_0.hlsl │ ├── shading_gun_0xC3C26F77.ps_5_0.hlsl │ ├── shading_world_0x08DC66D1.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── tonemap_fxaa_0xB030BAA6.ps_5_0.hlsl │ ├── tonemap_offxaa_0xFE88487E.ps_5_0.hlsl │ └── video_0x0E97A4A0.ps_5_0.hlsl ├── bulletstormfullclip │ ├── FXAA_0xA363AEA7.ps_5_0.hlsl │ ├── Something_0x98F82F0F.ps_5_0.hlsl │ ├── UberPostProcessBlendPixelShader_0xF74269C4.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ └── videos_0xE70DCC4C.ps_5_0.hlsl ├── callofduty_t7_blackops3 │ ├── addon.cpp │ ├── common.hlsl │ ├── shaders │ │ ├── bloom_0x57CF6767.ps_5_0.hlsl │ │ ├── exposure_0x14F64B50.cs_5_0.hlsl 1 │ │ ├── final_game_0x3D461B1A.ps_5_0.hlsl │ │ ├── final_mainmenu_0x224A8BF5.ps_5_0.hlsl │ │ ├── fsfx_blur_0xDA908072.ps_5_0.hlsl │ │ ├── fsfx_dni_0x423C810B.ps_5_0.hlsl │ │ ├── fsfx_map_shangrila_water_0x3E9C52D5.ps_5_0.hlsl │ │ ├── fsfx_map_soe_teleport_0xADBF1975.ps_5_0.hlsl │ │ ├── fsfx_map_zets_bubbles_0xCF206106.ps_5_0.hlsl │ │ ├── fsfx_sight_01_0x9AF0BA45.ps_5_0.hlsl │ │ ├── fsfx_sight_02_0xF0897820.ps_5_0.hlsl │ │ ├── fsfx_slide_0x8F563B81.ps_5_0.hlsl │ │ ├── fsfx_xrayoutline1_0x4493183C.ps_5_0.hlsl │ │ ├── fsfx_xrayoutline_0xE6F1994E.ps_5_0.hlsl │ │ ├── lutbuilder_0x2807E427.cs_5_0.hlsl 1 │ │ ├── motionblur_0x0A90E591.ps_5_0.hlsl │ │ ├── mov_loading_0x2D7D9715.ps_5_0.hlsl │ │ ├── rec709_broken_0x8324B585.ps_5_0.hlsl │ │ ├── rx_ironsight_red_0x3F3188B9.ps_5_0.hlsl 1 │ │ ├── tonemapper_game_0x59F328E3.ps_5_0.hlsl │ │ ├── tonemapper_mainmenu_0x1744B1D4.ps_5_0.hlsl │ │ └── volumetricfog_0x24E2A9AA.ps_5_0.hlsl 1 │ ├── shaders_ui │ │ ├── 0x030282F6.ps_5_0.hlsl │ │ ├── 0x11920281.ps_5_0.hlsl │ │ ├── 0x2B62907A.ps_5_0.hlsl │ │ ├── 0x3DE15138.ps_5_0.hlsl │ │ ├── 0x54AFA103.ps_5_0.hlsl │ │ ├── 0x5AC2F001.ps_5_0.hlsl │ │ ├── 0x6868CE30.ps_5_0.hlsl │ │ ├── 0x835A90CD.ps_5_0.hlsl │ │ ├── 0x95E507B2.ps_5_0.hlsl │ │ ├── 0x9CFEB747.ps_5_0.hlsl │ │ ├── 0xB00EE6B3.ps_5_0.hlsl │ │ ├── 0xBC5DA296.ps_5_0.hlsl │ │ ├── 0xBCC9B252.ps_5_0.hlsl │ │ ├── 0xC1B964B5.ps_5_0.hlsl │ │ └── 0xED7F350C.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── castlevanialos │ ├── 0x03761282.ps_5_0.hlsl │ ├── 0x12953C3F.ps_5_0.hlsl │ ├── 0x13DD44CF.ps_5_0.hlsl │ ├── 0x23B5C886.ps_5_0.hlsl │ ├── 0x30AB9231.ps_5_0.hlsl │ ├── 0x880A17D3.ps_4_0.hlsl │ ├── 0xBABB263A.ps_5_0.hlsl │ ├── 0xE95C8216.ps_5_0.hlsl │ ├── UI_0x8B7E874F.ps_5_0.hlsl │ ├── addon.cpp │ ├── bloom_0xD50CABBC.ps_5_0.hlsl │ ├── bookfinal_0xB9D8E2E6.ps_5_0.hlsl │ ├── common.hlsl │ ├── exposure_0x2C4D7C55.ps_5_0.hlsl │ ├── gamma_0x476C8032.ps_5_0.hlsl │ ├── los2 │ │ ├── gamma_0x450587EA.ps_5_0.hlsl │ │ ├── sharpen_0x0E1E3B4D.ps_5_0.hlsl │ │ ├── subtitles_0xEF036E36.ps_5_0.hlsl │ │ ├── tonemap_0x09E1F794.ps_5_0.hlsl │ │ ├── tonemap_0x0BBBF840.ps_5_0.hlsl │ │ ├── tonemap_0x3DC8491D.ps_5_0.hlsl │ │ ├── tonemap_0x86DAD59B.ps_5_0.hlsl │ │ ├── tonemap_0x8EFA952B.ps_5_0.hlsl │ │ ├── tonemap_0xB9E4C979.ps_5_0.hlsl │ │ ├── tonemap_0xC9D34264.ps_5_0.hlsl │ │ └── videos_0xC39D4062.ps_5_0.hlsl │ ├── shared.h │ ├── ssao_0xA6EE92DC.ps_5_0.hlsl │ ├── subtitles_0x53C984D4.ps_5_0.hlsl │ ├── sunrays1_0xF7BE1DE7.ps_5_0.hlsl │ ├── sunrays2_0xD45FAC70.ps_5_0.hlsl │ ├── sunrays3_0x35D82084.ps_5_0.hlsl │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ └── video_0xC3A894A3.ps_5_0.hlsl ├── childrenofthesun │ ├── LutBuilderHdr_0x31B52561.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── shared.h │ ├── uberpost_0x4DD5AD48.ps_4_0.hlsl │ └── videos_0xF804335C.ps_4_0.hlsl ├── citizensleeper2 │ ├── addon.cpp │ ├── output_0xF89DA645.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_4_0.hlsl ├── clairobscur_expedition33 │ ├── addon.cpp │ ├── composite.hlsl │ ├── extra │ │ └── combat_ui_0xB2F681EC.ps_6_6.hlsl │ ├── lilium_rcas.hlsl │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsl │ │ ├── lutbuilder_0x0649A5D1.ps_6_6.hlsl │ │ ├── lutbuilder_0x4A0DBF57.ps_6_6.hlsl │ │ ├── lutbuilder_0x50F22BD6.ps_6_6.hlsl │ │ ├── lutbuilder_0x773A9497.ps_6_6.hlsl │ │ ├── lutbuilder_0xF9332C83.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsl │ ├── outputs │ │ ├── composite_hdr_0x92D4B659.ps_6_6.hlsl │ │ └── composite_hdr_blur_0x8DD3A88B.ps_6_6.hlsl │ ├── postprocess │ │ ├── postprocess_0x9FB83C96.ps_6_6.hlsl │ │ └── pp_filmgrain_0x86695935.ps_6_6.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── clivebarkersjericho │ ├── Bloom_Threshold_0xDADCF8C0.ps_3_0.hlsl │ ├── Damage_0x1BEF7A1F.ps_3_0.hlsl │ ├── Damage_0x5503F1C7.ps_3_0.hlsl │ ├── DoF_Fog_0x88EF5970.ps_3_0.hlsl │ ├── Emissives_0xF0E16BB7.ps_3_0.hlsl │ ├── MenuBlur_0x5D32B50A.ps_3_0.hlsl │ ├── MotionBlur_0xFB9052E6.ps_3_0.hlsl │ ├── Output_0x43D12A2B.ps_3_0.hlsl │ ├── Output_0x7E9BCFC6.ps_3_0.hlsl │ ├── Output_0xDBBB4C25.ps_3_0.hlsl │ ├── Output_0xEF22B21C.ps_3_0.hlsl │ ├── Overlay_0xE055A254.ps_3_0.hlsl │ ├── Particles_0x1D8C8AC9.ps_3_0.hlsl │ ├── RadialBlur_0x58F1B3D3.ps_3_0.hlsl │ ├── ScopeAndMagicOverlay_0x9C28BBBA.ps_3_0.hlsl │ ├── Sharpening_0x23614FA0.ps_3_0.hlsl │ ├── Skybox_0x0B83B2B8.ps_3_0.hlsl │ ├── UI_0x87D1670C.ps_3_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── cp2077 │ ├── aces_cdpr.hlsl │ ├── addon.cpp │ ├── autoexposure_0x1F5B2B62_ps_6_0.hlsl │ ├── colormath.hlsl │ ├── composite.hlsl │ ├── composite2.hlsl │ ├── composite2_0x21C2AF18.ps_6_0.hlsl │ ├── composite2_array_multisample_0xA8520658.ps_6_0.hlsl │ ├── composite2_array_multisample_blend_rtv1_0x04D8EA44.ps_6_0.hlsl │ ├── composite2_array_multisample_blend_rtv1_lowbit_0xE090225C.ps_6_0.hlsl │ ├── composite2_array_multisample_lowbit_0x4F8F2E3E.ps_6_0.hlsl │ ├── composite2_blend_rtv1_0x4A2023A1.ps_6_0.hlsl │ ├── composite2_blend_rtv1_lowbit_0x9D54135F.ps_6_0.hlsl │ ├── composite2_lowbit_0x950FDF7E.ps_6_0.hlsl │ ├── composite2_multisample_0x4E63FBE2.ps_6_0.hlsl │ ├── composite2_multisample_blend_rtv1_0xED7139C7.ps_6_0.hlsl │ ├── composite2_multisample_blend_rtv1_lowbit_0x69A26CA5.ps_6_0.hlsl │ ├── composite2_multisample_lowbit_0x948170D4.ps_6_0.hlsl │ ├── composite_0x5DF649A9.ps_6_0.hlsl │ ├── composite_lowbit_0xA61F2FEE.ps_6_0.hlsl │ ├── composite_multisample_0x298A6BB0.ps_6_0.hlsl │ ├── composite_multisample_lowbit_0xBF8489D2.ps_6_0.hlsl │ ├── cp2077.h │ ├── film_grain_gen_0xD2BBEBD9.cs_6_0.hlsl │ ├── film_grain_overlay_0xC783FBA1.cs_6_0.hlsl │ ├── film_grain_overlay_221_0xE87F9B2E.cs_6_0.hlsl │ ├── film_grain_overlay_23_0xCE7EB8C7.cs_6_0.hlsl │ ├── film_grain_overlay_new_0x80CEFAE4.cs_6_0.hlsl │ ├── hud_0xC83E64DF.cs_6_0.hlsl │ ├── hud_221_0x11C9D257.cs_6_0.hlsl │ ├── hud_23_0x066EBCF7.cs_6_0.hlsl │ ├── hud_new_0xFBFF99B4.cs_6_0.hlsl │ ├── injectedBuffer.hlsl │ ├── menu2_0x55E00CA2.cs_6_0.hlsl │ ├── menu3_0xB489149F.cs_6_0.hlsl │ ├── menu4_0xE57907C4.ps_6_0.hlsl │ ├── menu_0xDE517511.cs_6_0.hlsl │ ├── menu_221_0xD46D9215.cs_6_0.hlsl │ ├── menu_221_norender_0xFDE6BBAC.cs_6_0.hlsl │ ├── menu_23_0x3BF1C870.cs_6_0.hlsl │ ├── menu_new2.0x18CFEFF4.cs_6_0.hlsl │ ├── menu_new_0x89C4A7A4.cs_6_0.hlsl │ ├── output_0xCBFFC2A3.ps_6_0.hlsl │ ├── render_composite_0x439442E3.ps_6_0.hlsl │ ├── skyexposure_0xF3F077EA_ps_6_0.hlsl │ ├── skymask_0x1C0F46FD_ps_6_0.hlsl │ ├── skymaskbuilder_0xAE939A0F_ps_6_0.hlsl │ ├── tonemapper.hlsl │ ├── tonemapper_0x71F27445.cs_6_0.hlsl │ ├── tonemapper_lowbit_0x97CA5A85.cs_6_0.hlsl │ ├── tonemapper_sdr_0x61DBBA5C.cs_6_0.hlsl │ ├── tonemapper_sdr_lowbit_0x745E34E1.cs_6_0.hlsl │ ├── unknown_0x0B908CCF.ps_6_0.hlsl │ └── upscaler_0x341CEB87.cs_6_0.hlsl ├── cronosthenewdawn │ ├── addon.cpp │ ├── composite │ │ ├── composite.hlsli │ │ ├── lilium_rcas.hlsl │ │ ├── uicomposite_0x0CCC55A4.ps_6_6.hlsl │ │ └── uicomposite_0x0E54A7B2.ps_6_6.hlsl │ ├── lutbuilder │ │ ├── CBuffers │ │ │ └── CBuffers_LUTbuilder.hlsli │ │ ├── colorcorrection.hlsli │ │ ├── filmiclutbuilder.hlsli │ │ ├── lutbuilder_0x7A55D23A.cs_6_6.hlsl │ │ ├── lutbuilder_0xAD0A58C0.ps_6_6.hlsl │ │ ├── lutbuilder_0xB7FDD0B1.cs_6_6.hlsl │ │ ├── lutbuilder_0xD72DEB56.cs_6_6.hlsl │ │ ├── lutbuilder_0xDE6B1981.cs_6_6.hlsl │ │ ├── lutbuilder_0xF4962825.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsli │ └── shared.h ├── dai │ ├── ResScale2_0xE6C75B8E.ps_5_0.hlsl │ ├── UIalpha_0xE8AAA41F.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── tonemap1_0x39C155AA.ps_5_0.hlsl │ ├── tonemap2_0x59D67072.ps_5_0.hlsl │ ├── tonemap3_0xA6483DBE.ps_5_0.hlsl │ ├── tonemap4_0x4A22EBE7.ps_5_0.hlsl │ ├── tonemap5ocular_0x83C78E9A.ps_5_0.hlsl │ ├── tonemap6ocular_0x74DD925C.ps_5_0.hlsl │ ├── tonemap7_0x848FA77D.ps_5_0.hlsl │ ├── tonemapC1_0xB3B5916C.ps_5_0.hlsl │ ├── tonemapC2_0x298147DD.ps_5_0.hlsl │ ├── tonemapC3_0xEE7DEA72.ps_5_0.hlsl │ ├── tonemapC4_0xE30CE1FB.ps_5_0.hlsl │ └── videos_0x5545BDF0.ps_5_0.hlsl ├── darksiders-warmastered │ ├── 0x4C639D58.ps_4_0.hlsl │ ├── 0x4DB78F78.ps_4_0.hlsl │ ├── 0xA15EA790.ps_4_0.hlsl │ ├── addon.cpp │ ├── before_vignette_ca_0x9102492B.ps_4_0.hlsl │ ├── common.hlsl │ ├── first_ui_0xD4C3AA39.ps_4_0.hlsl │ ├── fxaa_0x8159D8EB.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uber_0xCAAA7655.ps_4_0.hlsl │ └── vignette_ca_0x0627AB68.ps_4_0.hlsl ├── darksouls │ ├── DICE.hlsl │ ├── addon.cpp │ ├── bloom_0x6FDD08FC.ps_5_0.hlsl │ ├── dof_far_0xDFCB6E8B.ps_5_0.hlsl │ ├── gamma_0xAB7CF260.ps_5_0.hlsl │ ├── shared.h │ ├── tonemap_0xF87B3349.ps_5_0.hlsl │ ├── ui_0x64F62639.ps_5_0.hlsl │ ├── ui_0x809881A3.ps_5_0.hlsl │ ├── ui_0xB0850BF3.ps_5_0.hlsl │ └── ui_text_0x6024AB96.ps_5_0.hlsl ├── darktide │ ├── addon.cpp │ ├── common.hlsl │ ├── lilium_cas.hlsl │ ├── output_0x882D3C2F.ps_6_0.hlsl │ ├── shared.h │ ├── sharpness_0x3B79D402.cs_6_0.hlsl │ ├── swap_chain_proxy_pixel_shader.ps_5_1.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_1.hlsl │ ├── tonemapper_0x0AF1BCE6.ps_6_0.hlsl │ ├── tonemapper_0x2DA6CA4B.ps_6_0.hlsl │ ├── tonemapper_0x3C25C217.ps_6_0.hlsl │ ├── tonemapper_0x4DDF4A68.ps_6_0.hlsl │ ├── tonemapper_0x9347F823.ps_6_0.hlsl │ ├── tonemapper_0xB3F15364.ps_6_0.hlsl │ ├── tonemapper_0xE0EF4D92.ps_6_0.hlsl │ ├── tonemapper_0xF155E283.ps_6_0.hlsl │ └── video_0x9715D453.ps_6_0.hlsl ├── dbzspark │ ├── addon.cpp │ ├── colorcorrect │ │ ├── colorcorrect_0x5975CAFA.ps_5_1.hlsl │ │ ├── colorcorrect_0x753DE2A9.ps_5_1.hlsl │ │ ├── colorcorrect_0xAB3F1A02.ps_5_1.hlsl │ │ ├── colorcorrect_0xD80F99B3.ps_5_1.hlsl │ │ ├── colorcorrectcommon.hlsl │ │ └── pumbocolorcorrect.hlsl │ ├── composite.hlsl │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsl │ │ ├── lutbuilder_0x2569985B.ps_5_1.hlsl │ │ ├── lutbuilder_0x31FE4421.ps_5_1.hlsl │ │ ├── lutbuilder_0x36E3A438.ps_5_1.hlsl │ │ ├── lutbuilder_0xC2A711CC.ps_5_1.hlsl │ │ ├── lutbuilder_0xE2C936EB.ps_5_1.hlsl │ │ └── lutbuildercommon.hlsl │ ├── outputs │ │ └── final00_0x4156562D.ps_5_1.hlsl │ ├── postprocess │ │ ├── blur_0x9C86B47E.ps_5_1.hlsl │ │ ├── blur_0xE45B4EB7.ps_5_0.hlsl │ │ ├── blur_0xE82792CE.ps_5_1.hlsl │ │ └── flares_0x79996CCB.ps_5_0.hlsl │ └── shared.h ├── deadisland2 │ ├── addon.cpp │ ├── bloom_0xC0640BE6.ps_5_0.hlsl │ ├── common.hlsli │ ├── composite_0xFF35BB60.ps_5_0.hlsl │ ├── lutbuilder_0x56A5EE10.cs_5_0.hlsl │ ├── output_0x62A09365.ps_5_0.hlsl │ └── shared.h ├── deathsdoor │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uber2_0x6D14F22A.ps_4_0.hlsl │ ├── uber_0x808BC2A2.ps_4_0.hlsl │ └── ui_0x2B868B21.ps_4_0.hlsl ├── deathstrandingdc │ ├── addon.cpp │ ├── common.hlsli │ ├── output │ │ ├── output_cs_0xB10FB52C.cs_5_1.hlsl │ │ ├── output_fxaa_0x70CCBA66.ps_5_1.hlsl │ │ ├── output_taa_0x5AE122FD.ps_5_1.hlsl │ │ ├── output_ui_images_0x3E68E00B.ps_5_1.hlsl │ │ ├── output_upscaling_0x34E4CF18.ps_5_1.hlsl │ │ └── output_video_0x6A97C357.ps_5_1.hlsl │ ├── shared.h │ ├── tonemap │ │ ├── tm_0x10169EAD.ps_5_1.hlsl │ │ ├── tm_0x1638915C.ps_5_1.hlsl │ │ ├── tm_0x1C1F542A.ps_5_1.hlsl │ │ ├── tm_main_0xBC4555A3.ps_5_1.hlsl │ │ ├── tm_photo-mode_0x9201D67E.ps_5_1.hlsl │ │ └── videos_calibration_menu_0xD81AD490.ps_5_1.hlsl │ ├── unknown │ │ ├── decodepq_0x3E1B242A.ps_5_1.hlsl │ │ ├── decodepq_0x5D659549.ps_5_1.hlsl │ │ ├── decodepq_0x6BD29D86.ps_5_1.hlsl │ │ ├── decodepq_0xC9FE9B19.ps_5_1.hlsl │ │ └── encodepq_0x19A259DF.ps_5_1.hlsl │ └── video_0x898E4E06.ps_5_1.hlsl ├── descenders │ ├── addon.cpp │ ├── common.hlsl │ ├── fxaa_0x9E60BC82.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── textmeshpro_0x4F036BB9.ps_4_0.hlsl │ ├── uber2_0x7AED79EA.ps_4_0.hlsl │ └── uber_0xD7048ECF.ps_4_0.hlsl ├── digimonstorytimestranger │ ├── DSTS_BRIGHTNESS_0xC0858664.ps_5_0.hlsl │ ├── DSTS_OUTPUT_0x13D78644.ps_5_0.hlsl │ ├── DSTS_TITLE_VIDEO_0x3E2F4F50.ps_5_0.hlsl │ ├── DSTS_TONEMAP_0xED64F186.ps_5_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── dirtrally2 │ ├── Output1_0xC0A30480.ps_5_0.hlsl │ ├── Output2_0x2724B9C9.ps_5_0.hlsl │ ├── Output3_0xB9397F62.ps_5_0.hlsl │ ├── Output4_0x3483F079.ps_5_0.hlsl │ ├── UI1_0x289F2576.ps_5_0.hlsl │ ├── UI2_0x384FC9E6.ps_5_0.hlsl │ ├── UI3_0xEE90D7DD.ps_5_0.hlsl │ ├── UI4_0x498A6414.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── dishonored │ ├── addon.cpp │ ├── common.hlsl │ ├── grading_0x52282493.ps_3_0.hlsl │ ├── grading_0xB7C106CA.ps_3_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── dmc5 │ ├── ConvertRec2020PS_0x6AB2B106.ps_5_0.hlsl │ ├── HDRPostProcess_WithTonemap_0xA59B718D.ps_5_0.hlsl │ ├── Sharpness_PS_0xD5E98B23.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsli │ └── shared.h ├── doom-eternal │ ├── addon.cpp │ ├── colorgrade_0x0EBF1051.comp.slang │ ├── common.slang │ ├── final_0x36EAB036.comp.slang │ ├── include │ │ └── aces.hlsl │ ├── intro_0xE67752B1.frag.slang │ ├── shared.h │ └── tonemapper_0x7EAD74D2.comp.slang ├── doom-tda │ ├── 0x2D7BED0C.comp.glsl │ ├── 0x2D7BED0C.comp.spv │ ├── 0x5786A75C.comp.glsl │ ├── 0x5786A75C.comp.spv │ ├── 0xE3A05FA7.comp.glsl │ ├── 0xE3A05FA7.comp.spv │ ├── addon.cpp │ └── include │ │ ├── common.glsl │ │ └── settings.glsl ├── duniaengine │ ├── Avatar │ │ ├── grading_0xDE02EA5F.ps_4_0.hlsl │ │ └── videos_0xDC7BCE83.ps_4_0.hlsl │ ├── FarCry2 │ │ ├── bloomsample_0x2DE809A9.ps_4_0.hlsl │ │ ├── grading_0x52A3DCD5.ps_4_0.hlsl │ │ ├── grading_0x8B2AB983.ps_4_0.hlsl │ │ └── videos_0x7399DA1F.ps_4_0.hlsl │ ├── FarCry3 │ │ ├── AA_0x06AC2C1D.ps_5_0.hlsl │ │ ├── UI_0xDEA4BACD.ps_5_0.hlsl │ │ ├── effect_0x0364C9A7.ps_5_0.hlsl │ │ ├── effect_0x12E98EAA.ps_5_0.hlsl │ │ ├── effect_0x172215B1.ps_5_0.hlsl │ │ ├── effect_0x1C7F67A4.ps_5_0.hlsl │ │ ├── effect_0x1F33196A.ps_5_0.hlsl │ │ ├── effect_0x29CD18B6.ps_5_0.hlsl │ │ ├── effect_0x36914D4C.ps_5_0.hlsl │ │ ├── effect_0x3E5B1161.ps_5_0.hlsl │ │ ├── effect_0x568F7B61.ps_5_0.hlsl │ │ ├── effect_0x6E2A0D6F.ps_5_0.hlsl │ │ ├── effect_0x6FF02A67.ps_5_0.hlsl │ │ ├── effect_0x8333D6F1.ps_5_0.hlsl │ │ ├── effect_0x86DBC4B9.ps_5_0.hlsl │ │ ├── effect_0x8D8A00F8.ps_5_0.hlsl │ │ ├── effect_0x8E890F88.ps_5_0.hlsl │ │ ├── effect_0xA3F537D2.ps_5_0.hlsl │ │ ├── effect_0xB5FBCC2B.ps_5_0.hlsl │ │ ├── effect_0xB9C79B5F.ps_5_0.hlsl │ │ ├── effect_0xC450C211.ps_5_0.hlsl │ │ ├── effect_0xC69EBB3D.ps_5_0.hlsl │ │ ├── effect_0xC7C99EFC.ps_5_0.hlsl │ │ ├── effect_0xD7500557.ps_5_0.hlsl │ │ ├── effect_0xEC102A39.ps_5_0.hlsl │ │ ├── effect_0xF18C2172.ps_5_0.hlsl │ │ ├── effect_0xF1F4D4DD.ps_5_0.hlsl │ │ ├── effect_0xF29207EF.ps_5_0.hlsl │ │ ├── filmgrain_0x85145482.ps_5_0.hlsl │ │ ├── lines_0xAC102B92.ps_5_0.hlsl │ │ ├── something_0x0BFBC3A9.ps_5_0.hlsl │ │ ├── something_0x1CA344D0.ps_5_0.hlsl │ │ ├── something_0x94CF318C.ps_5_0.hlsl │ │ ├── something_0xA6A9C3BD.ps_5_0.hlsl │ │ ├── tonemap_0x129E838C.ps_5_0.hlsl │ │ ├── tonemap_0x2D942350.ps_5_0.hlsl │ │ ├── tonemap_0x67E0BEC3.ps_5_0.hlsl │ │ ├── tonemap_0x9400448D.ps_5_0.hlsl │ │ ├── tonemap_0xD529C189.ps_5_0.hlsl │ │ ├── tonemap_0xDB4C6627.ps_5_0.hlsl │ │ ├── videos_0x1FF398C9.ps_5_0.hlsl │ │ └── videos_0x7905FD45.ps_5_0.hlsl │ ├── FarCryPrimal │ │ ├── AA_0xA1E8AD3F.ps_5_0.hlsl │ │ ├── exposure_0xE3D68DA2.cs_5_0.hlsl │ │ ├── tonemap_0x01F1B6F2.ps_5_0.hlsl │ │ ├── tonemap_0x02938160.ps_5_0.hlsl │ │ ├── tonemap_0x03306A38.ps_5_0.hlsl │ │ ├── tonemap_0x1458B56B.ps_5_0.hlsl │ │ ├── tonemap_0x28537390.ps_5_0.hlsl │ │ ├── tonemap_0x2D0E0227.ps_5_0.hlsl │ │ ├── tonemap_0x4671847D.ps_5_0.hlsl │ │ ├── tonemap_0x594E52B0.ps_5_0.hlsl │ │ ├── tonemap_0x5D90F346.ps_5_0.hlsl │ │ ├── tonemap_0x65A18F98.ps_5_0.hlsl │ │ ├── tonemap_0xA0717E6A.ps_5_0.hlsl │ │ ├── tonemap_0xA9B38DFF.ps_5_0.hlsl │ │ ├── tonemap_0xB7B2B52B.ps_5_0.hlsl │ │ ├── tonemap_0xD08DF143.ps_5_0.hlsl │ │ ├── tonemap_0xEE739C51.ps_5_0.hlsl │ │ ├── tonemap_0xEFB860C8.ps_5_0.hlsl │ │ ├── tonemap_0xF0A0145B.ps_5_0.hlsl │ │ └── videos_0x30F66CC7.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_4_0.hlsl ├── dxmd │ ├── 01_final_0x7FF6EC9E.ps_5_0.hlsl │ ├── 02_ui_0xE3DF9B3A.ps_5_0.hlsl │ ├── 03_filmgrain_0x11044178.ps_5_0.hlsl │ ├── 04_chromatic_aberation_0x48A33894.ps_5_0.hlsl │ ├── 05_sharpen_0xDA65F8ED.ps_5_0.hlsl │ ├── 06_temporalaa_0x84EF14ED.cs_5_0.hlsl │ ├── 06_temporalaa_off_0x00E2BDB5.ps_5_0.hlsl │ ├── 07_dofblend_0xDE757555.cs_5_0.hlsl │ ├── 08_dofbuilder_0x2FBF8291.cs_5_0.hlsl │ ├── 09_lut_0xEDC9A10D.cs_5_0.hlsl │ ├── 09_lut_overlay_0x40CB7397.cs_5_0.hlsl │ ├── 10_lensflare_0x48BDD659.ps_5_0.hlsl │ ├── 11_bloomexp_0xAC144B8D.ps_5_0.hlsl │ ├── addon.cpp │ ├── finalxx_0x9B8BB508.ps_4_0.hlsl │ └── shared.h ├── dyinglight │ ├── TAA_0xA67ABF78.ps_5_0.hlsl │ ├── addon.cpp │ ├── cap_0x8194877A.ps_5_0.hlsl │ ├── common.hlsli │ ├── gamma_0x558540C8.ps_5_0.hlsl │ ├── lens effects │ │ ├── lensflare2_0x7B8A6DC4.ps_5_0.hlsl │ │ ├── lensflare_0x3F53E66E.ps_5_0.hlsl │ │ └── lensflare_dirt_mask_0x57F9AF2E.ps_5_0.hlsl │ ├── lighting │ │ ├── 0x06A58024.ps_5_0.hlsl │ │ ├── 0x1D09E8D5.ps_5_0.hlsl │ │ ├── 0x50CFC334.ps_5_0.hlsl │ │ ├── 0x5731A4EC.ps_5_0.hlsl │ │ ├── 0x5B869E40.ps_5_0.hlsl │ │ ├── 0x6ECA8248.ps_5_0.hlsl │ │ ├── 0x7BF499C3.ps_5_0.hlsl │ │ ├── 0x7C58E7EE.ps_5_0.hlsl │ │ ├── 0x9FAA56D4.ps_5_0.hlsl │ │ ├── 0xA12396FD.ps_5_0.hlsl │ │ ├── 0xD690FC1B.ps_5_0.hlsl │ │ ├── autoexposure_0x28180B36.ps_5_0.hlsl │ │ ├── bloom_bright_pass_0x9648C271.ps_5_0.hlsl │ │ ├── bloom_final_0x61D242D6.ps_5_0.hlsl │ │ ├── fire_0xAB16B3F7.ps_5_0.hlsl │ │ ├── fire_and_smoke_0x372AEE4E.ps_5_0.hlsl │ │ ├── lighting.hlsli │ │ ├── lighting_0x45B99B2D.ps_5_0.hlsl │ │ ├── water_0x36E3A838.ps_5_0.hlsl │ │ └── water_other_0xC24E43EF.ps_5_0.hlsl │ ├── lut1_0x372BEBAB.ps_5_0.hlsl │ ├── lut2_grain_0xC20255E1.ps_5_0.hlsl │ ├── lut2_no_grain_0xD42BAD58.ps_5_0.hlsl │ ├── lut_bw_grain_0x45D95DCB.ps_5_0.hlsl │ ├── lut_bw_no_grain_0xBA423838.ps_5_0.hlsl │ ├── shared.h │ ├── sky │ │ ├── godrays_0xA6EC1DEC.ps_5_0.hlsl │ │ ├── sky.hlsli │ │ ├── sky_0x975AA892.ps_5_0.hlsl │ │ └── sunstar_0xBA89E3AC.ps_5_0.hlsl │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ └── videos_0x64AB7A2D.ps_5_0.hlsl ├── dyinglight2 │ ├── addon.cpp │ ├── auto_exposure_0x2378686B.ps_5_x.hlsl │ ├── lens_flare_0x43BA757D.ps_5_x.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ └── tonemapper_0xA7F77A42.ps_5_x.hlsl ├── elitedangerous │ ├── addon.cpp │ ├── bloom_0xDEAFF53A.ps_5_0.hlsl │ ├── common.hlsli │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── tonemap_0xD7E646E3.ps_5_0.hlsl │ └── video_0x2F04633E.ps_5_0.hlsl ├── ereban │ ├── HDRPfinal6_0x38B55FCE.ps_5_0.hlsl │ ├── HDRPfinalDLSS_0xCF6A37F9.ps_5_0.hlsl │ ├── HDRPfinalFXAA_0x9A3E0141.ps_5_0.hlsl │ ├── HDRPfinalTM2_0x0FA783B7.ps_5_0.hlsl │ ├── HDRPfinalTM_0x02AB22C6.ps_5_0.hlsl │ ├── HDRPfinal_0x192EEB27.ps_5_0.hlsl │ ├── LutBuilder3D2_0x7F27D36D.cs_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── fxaa_0x064D62B7.cs_5_0.hlsl │ ├── rcas_0x52B5985A.ps_5_0.hlsl │ ├── rcas_0xE0FE0468.ps_5_0.hlsl │ ├── screenLUT_0x0EBC87AB.ps_5_0.hlsl │ ├── shared.h │ ├── uberpostTM_0x3BD8B8FD.cs_5_0.hlsl │ ├── uberpostTM_0xB9857DFB.cs_5_0.hlsl │ ├── uberpost_0x59A9259E.cs_5_0.hlsl │ ├── uberpost_0xE363E5C8.cs_5_0.hlsl │ └── videos_0x8A6BCB4C.ps_4_0.hlsl ├── eternights │ ├── addon.cpp │ ├── motion_blur_disable_0xCE499034.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── uber_battle_0x8191B510.ps_4_0.hlsl │ ├── uber_dodge_0x97E9E2C4.ps_4_0.hlsl │ ├── uber_main_menu_0xFBF8FE52.ps_4_0.hlsl │ └── uber_train_0x206927BB.ps_4_0.hlsl ├── fallout4 │ ├── 09_videos_0x0F2CC0D1.ps_5_0.hlsl │ ├── 10_dofblender_0x8F009507.ps_5_0.hlsl │ ├── 11_dof1_0x7543CFBC.hlsl │ ├── 11_dof2_0x5E75012A.hlsl │ ├── 11_dof3_0xC7AD6297.hlsl │ ├── 12_luts_0x80802E60.ps_5_0.hlsl │ ├── 13_gamedof_0x83660755.ps_5_0.hlsl │ ├── 14_vignette_0xB74B05F4.ps_5_0.hlsl │ ├── 15_tonemap_a_0x8024E8B5.ps_5_0.hlsl │ ├── 15_tonemap_b_0x676B8B5D.ps_5_0.hlsl │ ├── 15_tonemap_newa_0x67685D89.ps_5_0.hlsl │ ├── 15_tonemap_newb_0xFEBC673C.ps_5_0.hlsl │ ├── addon.cpp │ ├── fxaa_0x4FB4DA20.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── taa2_0x61CC29E6.ps_5_0.hlsl │ └── taa_0x8CAC3BD9.ps_5_0.hlsl ├── fallout76 │ ├── 09_videos_0x0F2CC0D1.ps_5_0.hlsl │ ├── addon.cpp │ ├── bloom_0x6214D668.ps_5_0.hlsl │ ├── common.hlsl │ ├── images_0x69B52EA7.ps_5_0.hlsl │ ├── images_0x7AAE8C2B.ps_5_0.hlsl │ ├── load_0x46A6A1FE.ps_5_0.hlsl │ ├── load_0xD66588EF.ps_5_0.hlsl │ ├── load_0xFEA4E7DB.ps_5_0.hlsl │ ├── load_composite_0x3C8AF2C9.ps_5_0.hlsl │ ├── lut_gamma_in_0x160805BC.ps_5_0.hlsl │ ├── lut_linear_in_0x2C63040A.ps_5_0.hlsl │ ├── pipboy_0xA3C662FB.ps_5_0.hlsl │ ├── quickboy_0xB38E2BDA.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── taa_0x3778E664.ps_5_0.hlsl │ ├── taa_0xAF2731D9.ps_5_0.hlsl │ ├── text_0x2CA9CD55.ps_5_0.hlsl │ ├── text_0xA6AB1C75.ps_5_0.hlsl │ ├── tonemap_0x1BDD7570.ps_5_0.hlsl │ ├── tonemap_0x2A868728.ps_5_0.hlsl │ ├── tonemap_0x5D002D1E.ps_5_0.hlsl │ ├── tonemap_0xBF6561E2.ps_5_0.hlsl │ ├── ui_0x21A11DE7.ps_5_0.hlsl │ ├── ui_0x28213F99.ps_5_0.hlsl │ ├── ui_0x4B3388FE.ps_5_0.hlsl │ ├── ui_0x4D248432.ps_5_0.hlsl │ ├── ui_0x6CF04AC0.ps_5_0.hlsl │ ├── ui_0xF2CCBA8C.ps_5_0.hlsl │ ├── ui_nav_0x19558629.ps_5_0.hlsl │ └── ui_popup_0x1CA86895.ps_5_0.hlsl ├── farcry5 │ ├── addon.cpp │ ├── antialiasing │ │ ├── TAA_1_0x902DA714.ps_5_0.hlsl │ │ └── TAA_2_0xF73CAD14.ps_5_0.hlsl │ ├── common.hlsli │ ├── include │ │ ├── CBuffer_CGlobalShaderParameterProvider.hlsl │ │ └── CBuffer_CPostFxHDRBloomEffectsParameterProvider.hlsl │ ├── shared.h │ ├── tonemapshaders │ │ └── tonemap_0x1571D57D.ps_5_0.hlsl │ ├── uishaders │ │ ├── ui_0x0B4E550B.ps_5_0.hlsl │ │ ├── ui_0x38354D7D.ps_5_0.hlsl │ │ ├── ui_0x45832831.ps_5_0.hlsl │ │ ├── ui_0x59C7A45E.ps_5_0.hlsl │ │ ├── ui_map_0xF6BE0A1D.ps_5_0.hlsl │ │ └── ui_probably_0x4EF04250.ps_5_0.hlsl │ ├── untestedtonemapshaders │ │ ├── 0x000D2BC4.ps_5_0.hlsl │ │ ├── 0x0038F29B.ps_5_0.hlsl │ │ ├── 0x0437E947.ps_5_0.hlsl │ │ ├── 0x0735605E.ps_5_0.hlsl │ │ ├── 0x07EF74A1.ps_5_0.hlsl │ │ ├── 0x08027BFC.ps_5_0.hlsl │ │ ├── 0x083D9A78.ps_5_0.hlsl │ │ ├── 0x0E38AAD2.ps_5_0.hlsl │ │ ├── 0x0F0B2CE5.ps_5_0.hlsl │ │ ├── 0x10231C66.ps_5_0.hlsl │ │ ├── 0x11D5A113.ps_5_0.hlsl │ │ ├── 0x122060F5.ps_5_0.hlsl │ │ ├── 0x12F1640C.ps_5_0.hlsl │ │ ├── 0x14EBF01E.ps_5_0.hlsl │ │ ├── 0x184DBA40.ps_5_0.hlsl │ │ ├── 0x217BD985.ps_5_0.hlsl │ │ ├── 0x2534C7F7.ps_5_0.hlsl │ │ ├── 0x290B7828.ps_5_0.hlsl │ │ ├── 0x2A6AED50.ps_5_0.hlsl │ │ ├── 0x2A6E527C.ps_5_0.hlsl │ │ ├── 0x2B85C639.ps_5_0.hlsl │ │ ├── 0x2EF0DED6.ps_5_0.hlsl │ │ ├── 0x300F7FF3.ps_5_0.hlsl │ │ ├── 0x3058755C.ps_5_0.hlsl │ │ ├── 0x309666EF.ps_5_0.hlsl │ │ ├── 0x32519F82.ps_5_0.hlsl │ │ ├── 0x32F16A90.ps_5_0.hlsl │ │ ├── 0x33FB65E7.ps_5_0.hlsl │ │ ├── 0x348CE1A5.ps_5_0.hlsl │ │ ├── 0x34A0E00B.ps_5_0.hlsl │ │ ├── 0x396FD824.ps_5_0.hlsl │ │ ├── 0x3BD30858.ps_5_0.hlsl │ │ ├── 0x3CAE4C8E.ps_5_0.hlsl │ │ ├── 0x3E43F999.ps_5_0.hlsl │ │ ├── 0x3E5F8369.ps_5_0.hlsl │ │ ├── 0x3F7783AE.ps_5_0.hlsl │ │ ├── 0x403ABC87.ps_5_0.hlsl │ │ ├── 0x45F2AF38.ps_5_0.hlsl │ │ ├── 0x4866CFD6.ps_5_0.hlsl │ │ ├── 0x4AA92092.ps_5_0.hlsl │ │ ├── 0x4C55BE75.ps_5_0.hlsl │ │ ├── 0x4EF3C78C.ps_5_0.hlsl │ │ ├── 0x504AC903.ps_5_0.hlsl │ │ ├── 0x5581BA78.ps_5_0.hlsl │ │ ├── 0x55DEA017.ps_5_0.hlsl │ │ ├── 0x5A2F2EDA.ps_5_0.hlsl │ │ ├── 0x5ACE773A.ps_5_0.hlsl │ │ ├── 0x5D2DF1FE.ps_5_0.hlsl │ │ ├── 0x5E4F88B5.ps_5_0.hlsl │ │ ├── 0x5F414BEE.ps_5_0.hlsl │ │ ├── 0x6227F75A.ps_5_0.hlsl │ │ ├── 0x64127F56.ps_5_0.hlsl │ │ ├── 0x6559857D.ps_5_0.hlsl │ │ ├── 0x674E5730.ps_5_0.hlsl │ │ ├── 0x722948E1.ps_5_0.hlsl │ │ ├── 0x76B76A16.ps_5_0.hlsl │ │ ├── 0x777F4A76.ps_5_0.hlsl │ │ ├── 0x78822AC6.ps_5_0.hlsl │ │ ├── 0x79CD42CF.ps_5_0.hlsl │ │ ├── 0x82FB264C.ps_5_0.hlsl │ │ ├── 0x834798F6.ps_5_0.hlsl │ │ ├── 0x84892D78.ps_5_0.hlsl │ │ ├── 0x858CE7BC.ps_5_0.hlsl │ │ ├── 0x85C59EFF.ps_5_0.hlsl │ │ ├── 0x86EEDA9F.ps_5_0.hlsl │ │ ├── 0x891EFB38.ps_5_0.hlsl │ │ ├── 0x8B299A3B.ps_5_0.hlsl │ │ ├── 0x8CACE71F.ps_5_0.hlsl │ │ ├── 0x8CB9138B.ps_5_0.hlsl │ │ ├── 0x8F4102F4.ps_5_0.hlsl │ │ ├── 0x8FF0D3D9.ps_5_0.hlsl │ │ ├── 0x90C1F98F.ps_5_0.hlsl │ │ ├── 0x90FC760C.ps_5_0.hlsl │ │ ├── 0x9186EC85.ps_5_0.hlsl │ │ ├── 0x931EA415.ps_5_0.hlsl │ │ ├── 0x952FA7A5.ps_5_0.hlsl │ │ ├── 0x9537D67F.ps_5_0.hlsl │ │ ├── 0x99614E51.ps_5_0.hlsl │ │ ├── 0x9EB859ED.ps_5_0.hlsl │ │ ├── 0xA198334F.ps_5_0.hlsl │ │ ├── 0xA23797DC.ps_5_0.hlsl │ │ ├── 0xA4AA5A07.ps_5_0.hlsl │ │ ├── 0xAFBE1171.ps_5_0.hlsl │ │ ├── 0xAFC011A5.ps_5_0.hlsl │ │ ├── 0xB02BE692.ps_5_0.hlsl │ │ ├── 0xB49C14B6.ps_5_0.hlsl │ │ ├── 0xB4F9EDC2.ps_5_0.hlsl │ │ ├── 0xB8087C39.ps_5_0.hlsl │ │ ├── 0xB81C1778.ps_5_0.hlsl │ │ ├── 0xB94C072D.ps_5_0.hlsl │ │ ├── 0xBAD2E26B.ps_5_0.hlsl │ │ ├── 0xBD09B3CD.ps_5_0.hlsl │ │ ├── 0xBD2F8147.ps_5_0.hlsl │ │ ├── 0xBDBE9D72.ps_5_0.hlsl │ │ ├── 0xBE67CC52.ps_5_0.hlsl │ │ ├── 0xC312F648.ps_5_0.hlsl │ │ ├── 0xC685010C.ps_5_0.hlsl │ │ ├── 0xC73B0A06.ps_5_0.hlsl │ │ ├── 0xC79DB810.ps_5_0.hlsl │ │ ├── 0xCA54FC50.ps_5_0.hlsl │ │ ├── 0xCA7CEF51.ps_5_0.hlsl │ │ ├── 0xCB49313D.ps_5_0.hlsl │ │ ├── 0xCC2A645C.ps_5_0.hlsl │ │ ├── 0xCD444BD6.ps_5_0.hlsl │ │ ├── 0xCF337746.ps_5_0.hlsl │ │ ├── 0xCFD3A026.ps_5_0.hlsl │ │ ├── 0xD205D5B7.ps_5_0.hlsl │ │ ├── 0xD4676DEE.ps_5_0.hlsl │ │ ├── 0xD4E20580.ps_5_0.hlsl │ │ ├── 0xD880111D.ps_5_0.hlsl │ │ ├── 0xDD41AEAE.ps_5_0.hlsl │ │ ├── 0xDE447D67.ps_5_0.hlsl │ │ ├── 0xDF18961D.ps_5_0.hlsl │ │ ├── 0xE0664F05.ps_5_0.hlsl │ │ ├── 0xE0E27CDE.ps_5_0.hlsl │ │ ├── 0xE1285FD8.ps_5_0.hlsl │ │ ├── 0xE485F395.ps_5_0.hlsl │ │ ├── 0xE5028E5E.ps_5_0.hlsl │ │ ├── 0xE6A5147B.ps_5_0.hlsl │ │ ├── 0xF077AC24.ps_5_0.hlsl │ │ ├── 0xF3614CB0.ps_5_0.hlsl │ │ ├── 0xF8118E2E.ps_5_0.hlsl │ │ ├── 0xFBAE2B78.ps_5_0.hlsl │ │ ├── 0xFC6FE980.ps_5_0.hlsl │ │ ├── 0xFD11208B.ps_5_0.hlsl │ │ ├── 0xFD835956.ps_5_0.hlsl │ │ └── 0xFFDC86C4.ps_5_0.hlsl │ └── video_0xBBBC0168.ps_5_0.hlsl ├── farcry6 │ ├── CAS_0x140B4D3B.ps_6_0.hlsl │ ├── addon.cpp │ ├── antialiasing │ │ ├── TAA_1_0xFF0AF25B.ps_6_0.hlsl │ │ └── TAA_1_Pause_0x4AD8172A.ps_6_0.hlsl │ ├── common.hlsli │ ├── final_HDR10_0x62A8D0C3.ps_6_0.hlsl │ ├── final_scRGB_0x6439E80A.ps_6_0.hlsl │ ├── shared.h │ ├── tonemapshaders │ │ ├── tested │ │ │ └── PostFxHDRCombineScene_0xA1868424.ps_6_0.hlsl │ │ └── untested │ │ │ ├── 0x05FD3154.ps_6_0.hlsl │ │ │ ├── 0x0657F4E8.ps_6_0.hlsl │ │ │ ├── 0x068C2573.ps_6_0.hlsl │ │ │ ├── 0x06C8FB52.ps_6_0.hlsl │ │ │ ├── 0x06DE5EA8.ps_6_0.hlsl │ │ │ ├── 0x0726AB34.ps_6_0.hlsl │ │ │ ├── 0x074312A7.ps_6_0.hlsl │ │ │ ├── 0x075B212E.ps_6_0.hlsl │ │ │ ├── 0x08F9D98D.ps_6_0.hlsl │ │ │ ├── 0x09681674.ps_6_0.hlsl │ │ │ ├── 0x0A955F86.ps_6_0.hlsl │ │ │ ├── 0x0C439465.ps_6_0.hlsl │ │ │ ├── 0x0EA00B77.ps_6_0.hlsl │ │ │ ├── 0x13EEA474.ps_6_0.hlsl │ │ │ ├── 0x16B8D224.ps_6_0.hlsl │ │ │ ├── 0x19080A4A.ps_6_0.hlsl │ │ │ ├── 0x1974E067.ps_6_0.hlsl │ │ │ ├── 0x1AAD642E.ps_6_0.hlsl │ │ │ ├── 0x1AAF772E.ps_6_0.hlsl │ │ │ ├── 0x1E09882F.ps_6_0.hlsl │ │ │ ├── 0x1EE19B5D.ps_6_0.hlsl │ │ │ ├── 0x1EE9426E.ps_6_0.hlsl │ │ │ ├── 0x1F979C9D.ps_6_0.hlsl │ │ │ ├── 0x2206E9E0.ps_6_0.hlsl │ │ │ ├── 0x23970608.ps_6_0.hlsl │ │ │ ├── 0x259F2333.ps_6_0.hlsl │ │ │ ├── 0x25D9C340.ps_6_0.hlsl │ │ │ ├── 0x26AF0D99.ps_6_0.hlsl │ │ │ ├── 0x27C8E69C.ps_6_0.hlsl │ │ │ ├── 0x29637342.ps_6_0.hlsl │ │ │ ├── 0x2A4BA270.ps_6_0.hlsl │ │ │ ├── 0x2C7413B8.ps_6_0.hlsl │ │ │ ├── 0x2C830F3A.ps_6_0.hlsl │ │ │ ├── 0x2CD6203D.ps_6_0.hlsl │ │ │ ├── 0x30672C95.ps_6_0.hlsl │ │ │ ├── 0x325C1A81.ps_6_0.hlsl │ │ │ ├── 0x33BB802E.ps_6_0.hlsl │ │ │ ├── 0x34B2D528.ps_6_0.hlsl │ │ │ ├── 0x34C19906.ps_6_0.hlsl │ │ │ ├── 0x3B4C1E86.ps_6_0.hlsl │ │ │ ├── 0x3BC5A2D0.ps_6_0.hlsl │ │ │ ├── 0x3C59F392.ps_6_0.hlsl │ │ │ ├── 0x3CB66659.ps_6_0.hlsl │ │ │ ├── 0x3ED38328.ps_6_0.hlsl │ │ │ ├── 0x3F4463CC.ps_6_0.hlsl │ │ │ ├── 0x41996126.ps_6_0.hlsl │ │ │ ├── 0x427958DD.ps_6_0.hlsl │ │ │ ├── 0x465E56DF.ps_6_0.hlsl │ │ │ ├── 0x4761F1A9.ps_6_0.hlsl │ │ │ ├── 0x485F7F43.ps_6_0.hlsl │ │ │ ├── 0x48BE2707.ps_6_0.hlsl │ │ │ ├── 0x4B619CDA.ps_6_0.hlsl │ │ │ ├── 0x4D53400C.ps_6_0.hlsl │ │ │ ├── 0x4DF8DE03.ps_6_0.hlsl │ │ │ ├── 0x4EA4B125.ps_6_0.hlsl │ │ │ ├── 0x50D36F56.ps_6_0.hlsl │ │ │ ├── 0x50E32B83.ps_6_0.hlsl │ │ │ ├── 0x50F62767.ps_6_0.hlsl │ │ │ ├── 0x51270322.ps_6_0.hlsl │ │ │ ├── 0x53A190E1.ps_6_0.hlsl │ │ │ ├── 0x55B3A7DA.ps_6_0.hlsl │ │ │ ├── 0x55CF1999.ps_6_0.hlsl │ │ │ ├── 0x57699DF0.ps_6_0.hlsl │ │ │ ├── 0x5908BF42.ps_6_0.hlsl │ │ │ ├── 0x59D2DAE2.ps_6_0.hlsl │ │ │ ├── 0x5E6CCDC1.ps_6_0.hlsl │ │ │ ├── 0x5F429243.ps_6_0.hlsl │ │ │ ├── 0x5F614AAD.ps_6_0.hlsl │ │ │ ├── 0x5FA58E47.ps_6_0.hlsl │ │ │ ├── 0x5FACB2CB.ps_6_0.hlsl │ │ │ ├── 0x5FE0F569.ps_6_0.hlsl │ │ │ ├── 0x61050728.ps_6_0.hlsl │ │ │ ├── 0x6243843C.ps_6_0.hlsl │ │ │ ├── 0x62A5758A.ps_6_0.hlsl │ │ │ ├── 0x62D9666B.ps_6_0.hlsl │ │ │ ├── 0x631285B9.ps_6_0.hlsl │ │ │ ├── 0x655E3FD9.ps_6_0.hlsl │ │ │ ├── 0x6572FD08.ps_6_0.hlsl │ │ │ ├── 0x661479DE.ps_6_0.hlsl │ │ │ ├── 0x6615AA73.ps_6_0.hlsl │ │ │ ├── 0x661912A8.ps_6_0.hlsl │ │ │ ├── 0x68369CCD.ps_6_0.hlsl │ │ │ ├── 0x6F3D811C.ps_6_0.hlsl │ │ │ ├── 0x6F4515A3.ps_6_0.hlsl │ │ │ ├── 0x713538D4.ps_6_0.hlsl │ │ │ ├── 0x71736AD8.ps_6_0.hlsl │ │ │ ├── 0x730C29CC.ps_6_0.hlsl │ │ │ ├── 0x73523AC4.ps_6_0.hlsl │ │ │ ├── 0x74A91FE3.ps_6_0.hlsl │ │ │ ├── 0x764734E0.ps_6_0.hlsl │ │ │ ├── 0x78F113F9.ps_6_0.hlsl │ │ │ ├── 0x7A8016D8.ps_6_0.hlsl │ │ │ ├── 0x7ACADA5A.ps_6_0.hlsl │ │ │ ├── 0x7C589E16.ps_6_0.hlsl │ │ │ ├── 0x7CF02919.ps_6_0.hlsl │ │ │ ├── 0x7D17F64B.ps_6_0.hlsl │ │ │ ├── 0x7E36B59E.ps_6_0.hlsl │ │ │ ├── 0x7FBF73FF.ps_6_0.hlsl │ │ │ ├── 0x807D4CD7.ps_6_0.hlsl │ │ │ ├── 0x80D29B74.ps_6_0.hlsl │ │ │ ├── 0x80EB781B.ps_6_0.hlsl │ │ │ ├── 0x8104D4CE.ps_6_0.hlsl │ │ │ ├── 0x81329A47.ps_6_0.hlsl │ │ │ ├── 0x8272021A.ps_6_0.hlsl │ │ │ ├── 0x84774E77.ps_6_0.hlsl │ │ │ ├── 0x894A04E2.ps_6_0.hlsl │ │ │ ├── 0x8A270AB7.ps_6_0.hlsl │ │ │ ├── 0x8D0264C3.ps_6_0.hlsl │ │ │ ├── 0x8E23D6E2.ps_6_0.hlsl │ │ │ ├── 0x8E6BE94C.ps_6_0.hlsl │ │ │ ├── 0x8EFB0AFE.ps_6_0.hlsl │ │ │ ├── 0x9005D00A.ps_6_0.hlsl │ │ │ ├── 0x90A26B26.ps_6_0.hlsl │ │ │ ├── 0x91714406.ps_6_0.hlsl │ │ │ ├── 0x922F7FC7.ps_6_0.hlsl │ │ │ ├── 0x940462CE.ps_6_0.hlsl │ │ │ ├── 0x963F6EE5.ps_6_0.hlsl │ │ │ ├── 0x968C0626.ps_6_0.hlsl │ │ │ ├── 0x9866AC5A.ps_6_0.hlsl │ │ │ ├── 0x99A2E70B.ps_6_0.hlsl │ │ │ ├── 0x9A4E0411.ps_6_0.hlsl │ │ │ ├── 0x9B1B16BB.ps_6_0.hlsl │ │ │ ├── 0xA2D9AEFF.ps_6_0.hlsl │ │ │ ├── 0xA5AEBE19.ps_6_0.hlsl │ │ │ ├── 0xA5E57932.ps_6_0.hlsl │ │ │ ├── 0xA843BD6B.ps_6_0.hlsl │ │ │ ├── 0xA8CF6E56.ps_6_0.hlsl │ │ │ ├── 0xAACDFCDC.ps_6_0.hlsl │ │ │ ├── 0xAB395F73.ps_6_0.hlsl │ │ │ ├── 0xACC42C27.ps_6_0.hlsl │ │ │ ├── 0xAD4FD417.ps_6_0.hlsl │ │ │ ├── 0xAD59A889.ps_6_0.hlsl │ │ │ ├── 0xAFF1DF53.ps_6_0.hlsl │ │ │ ├── 0xB03CDCA0.ps_6_0.hlsl │ │ │ ├── 0xB191BBDB.ps_6_0.hlsl │ │ │ ├── 0xB20A1250.ps_6_0.hlsl │ │ │ ├── 0xB3665494.ps_6_0.hlsl │ │ │ ├── 0xB6BC4695.ps_6_0.hlsl │ │ │ ├── 0xB9F105D6.ps_6_0.hlsl │ │ │ ├── 0xBA611E7A.ps_6_0.hlsl │ │ │ ├── 0xBB083C6A.ps_6_0.hlsl │ │ │ ├── 0xBCE65E05.ps_6_0.hlsl │ │ │ ├── 0xBD51C832.ps_6_0.hlsl │ │ │ ├── 0xBDB76926.ps_6_0.hlsl │ │ │ ├── 0xBDD5AAB8.ps_6_0.hlsl │ │ │ ├── 0xBF3E7AB8.ps_6_0.hlsl │ │ │ ├── 0xC0BC8CD1.ps_6_0.hlsl │ │ │ ├── 0xC464D5B6.ps_6_0.hlsl │ │ │ ├── 0xC58D1ED7.ps_6_0.hlsl │ │ │ ├── 0xC5ABF2EC.ps_6_0.hlsl │ │ │ ├── 0xC8A34BA5.ps_6_0.hlsl │ │ │ ├── 0xC9C7CDB7.ps_6_0.hlsl │ │ │ ├── 0xCA6E2CC0.ps_6_0.hlsl │ │ │ ├── 0xCCD08D34.ps_6_0.hlsl │ │ │ ├── 0xCDDBD798.ps_6_0.hlsl │ │ │ ├── 0xCE65AE19.ps_6_0.hlsl │ │ │ ├── 0xD00975D8.ps_6_0.hlsl │ │ │ ├── 0xD06969A2.ps_6_0.hlsl │ │ │ ├── 0xD354EA14.ps_6_0.hlsl │ │ │ ├── 0xD38323E1.ps_6_0.hlsl │ │ │ ├── 0xD559E140.ps_6_0.hlsl │ │ │ ├── 0xD6EE4E01.ps_6_0.hlsl │ │ │ ├── 0xD8EA6E82.ps_6_0.hlsl │ │ │ ├── 0xD975B98D.ps_6_0.hlsl │ │ │ ├── 0xDB3311E1.ps_6_0.hlsl │ │ │ ├── 0xDC5E5B75.ps_6_0.hlsl │ │ │ ├── 0xDC95B0EC.ps_6_0.hlsl │ │ │ ├── 0xE2823073.ps_6_0.hlsl │ │ │ ├── 0xE5521A1F.ps_6_0.hlsl │ │ │ ├── 0xE929B456.ps_6_0.hlsl │ │ │ ├── 0xEAC4C74D.ps_6_0.hlsl │ │ │ ├── 0xEC8E7533.ps_6_0.hlsl │ │ │ ├── 0xEFA8DD30.ps_6_0.hlsl │ │ │ ├── 0xEFB5A999.ps_6_0.hlsl │ │ │ ├── 0xF0213525.ps_6_0.hlsl │ │ │ ├── 0xF38EA914.ps_6_0.hlsl │ │ │ ├── 0xF3A7CAAE.ps_6_0.hlsl │ │ │ ├── 0xF3CFC448.ps_6_0.hlsl │ │ │ ├── 0xF4F136DF.ps_6_0.hlsl │ │ │ ├── 0xF5A2D016.ps_6_0.hlsl │ │ │ ├── 0xF5AD71BA.ps_6_0.hlsl │ │ │ ├── 0xF65E29AC.ps_6_0.hlsl │ │ │ ├── 0xF76707EF.ps_6_0.hlsl │ │ │ ├── 0xF8724E0E.ps_6_0.hlsl │ │ │ ├── 0xF947FD52.ps_6_0.hlsl │ │ │ ├── 0xFAB443D0.ps_6_0.hlsl │ │ │ ├── 0xFB794AEC.ps_6_0.hlsl │ │ │ ├── 0xFC4FCEE5.ps_6_0.hlsl │ │ │ ├── 0xFE6F35C4.ps_6_0.hlsl │ │ │ ├── 0xFEA6F8A7.ps_6_0.hlsl │ │ │ └── 0xFF7B563F.ps_6_0.hlsl │ └── uishaders │ │ ├── ui_0x63D84754.ps_6_0.hlsl │ │ ├── ui_0x7C01563D.ps_6_0.hlsl │ │ ├── ui_0x8967A0B3.ps_6_0.hlsl │ │ ├── ui_tonemap_0x3ED32776.ps_6_0.hlsl │ │ └── ui_tonemap_2_0xDC4619B1.ps_6_0.hlsl ├── fe │ ├── addon.cpp │ ├── bloom_0x50ADC1A6.ps_4_0.hlsl │ ├── bloom_0xE6F106CA.ps_4_0.hlsl │ ├── blur_0x88E852B9.ps_4_0.hlsl │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── temporalreprojection_0x9FF1DFF2.ps_4_0.hlsl │ ├── tonemap_0x9EFFF420.ps_4_0.hlsl │ └── vignette_0x1BA9B943.ps_4_0.hlsl ├── ff7rebirth │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0xC67C6B5A.ps_6_6.hlsl │ ├── final_0xD0981514.ps_6_6.hlsl │ ├── final_0xF5B7D0CB.ps_6_6.hlsl │ ├── final_damage_0x6E1106B8.ps_6_6.hlsl │ ├── final_damage_0xEA0D2908.ps_6_6.hlsl │ ├── final_damage_0xFF35CB65.ps_6_6.hlsl │ ├── final_damage_displaymapped_0x05833276.ps_6_6.hlsl │ ├── final_damage_displaymapped_0x090DB8BF.ps_6_6.hlsl │ ├── final_damage_displaymapped_0x3C5CF69A.ps_6_6.hlsl │ ├── final_damage_displaymapped_fg_0xF6A32662.ps_6_6.hlsl │ ├── final_damage_fg_0x8375CFD3.ps_6_6.hlsl │ ├── final_displaymapped_0xBD3E3B33.ps_6_6.hlsl │ ├── final_displaymapped_0xD092CC63.ps_6_6.hlsl │ ├── final_displaymapped_0xD7A19FB6.ps_6_6.hlsl │ ├── final_displaymapped_fg_0xD2189E97.ps_6_6.hlsl │ ├── final_fg_0x29BC0FC4.ps_6_6.hlsl │ ├── final_fmv_0x151828B3.ps_6_6.hlsl │ ├── final_fmv_0x854B9174.ps_6_6.hlsl │ ├── final_fmv_0xC9686A2D.ps_6_6.hlsl │ ├── final_fmv_displaymapped_0x476D2C8F.ps_6_6.hlsl │ ├── final_fmv_displaymapped_0x7CBA3938.ps_6_6.hlsl │ ├── final_fmv_displaymapped_0xEFDBD563.ps_6_6.hlsl │ ├── final_fmv_displaymapped_fg_0x44F26DBC.ps_6_6.hlsl │ ├── final_fmv_fg_0x072D83D6.ps_6_6.hlsl │ ├── final_menu_0x15CB9307.ps_6_6.hlsl │ ├── final_menu_0x6024D785.ps_6_6.hlsl │ ├── final_menu_0xD31CF869.ps_6_6.hlsl │ ├── final_menu_0xFB84BDDD.ps_6_6.hlsl │ ├── final_menu_displaymapped_0x288CF983.ps_6_6.hlsl │ ├── final_menu_displaymapped_0x79A96817.ps_6_6.hlsl │ ├── final_menu_displaymapped_0x97E882E3.ps_6_6.hlsl │ ├── final_menu_displaymapped_fg_0x71899A66.ps_6_6.hlsl │ ├── final_menu_fg_0x043715F2.ps_6_6.hlsl │ ├── final_sdr_0x78869A81.ps_6_6.hlsl │ ├── final_static_0x40D99FDC.ps_6_6.hlsl │ ├── final_static_0xA53093E1.ps_6_6.hlsl │ ├── final_static_0xBDD0F47E.ps_6_6.hlsl │ ├── final_static_displaymapped_0x22FDDF03.ps_6_6.hlsl │ ├── final_static_displaymapped_0x4041C8C4.ps_6_6.hlsl │ ├── final_static_displaymapped_0x549489A2.ps_6_6.hlsl │ ├── final_static_displaymapped_fg_0x695E342A.ps_6_6.hlsl │ ├── final_static_fg_0xBD9ED395.ps_6_6.hlsl │ ├── hdrcomposite.hlsl │ ├── include │ │ ├── CBuffer_Globals.hlsl │ │ ├── CBuffer_View.hlsl │ │ └── Registers.hlsl │ └── shared.h ├── ff7remake │ ├── addon.cpp │ ├── bloom_vignette_0x4D6F937E.ps_5_x.hlsl │ ├── common.hlsl │ ├── output_0x922A71D1.ps_5_x.hlsl │ ├── output_0xD950DA01.ps_5_x.hlsl │ ├── output_0xE87D13A1.ps_5_x.hlsl │ └── shared.h ├── ffx │ ├── 00_ui_draw_0x04FDEDF9.ps_4_0.hlsl │ ├── 03_bright_0xB8F57CD5.ps_4_0.hlsl │ ├── 05_subtitles_0x4DC74060.ps_4_0.hlsl │ ├── 06_video_0xA3657554.ps_4_0.hlsl │ ├── addon.cpp │ ├── color_correction_0x77AB75A9.ps_4_0.hlsl │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── ui_0x2BBD74AD.ps_4_0.hlsl │ ├── ui_0xC605FBD5.ps_4_0.hlsl │ └── xx_screen_fade_0x90C53F9F.ps_4_0.hlsl ├── ffxiv │ ├── BloomPass1_0xBF06786C.ps_5_0.hlsl │ ├── BloomPass1_0xFE5B6B3E.vs_5_0.hlsl │ ├── BloomPass2_0x5E42F039.ps_5_0.hlsl │ ├── BloomPass2_0x9B242D09.vs_5_0.hlsl │ ├── Copy_0x6CFFD968.ps_5_0.hlsl │ ├── Copy_0xB0CE42B9.ps_5_0.hlsl │ ├── DICE.hlsl │ ├── FullscreenGammaCorrection_0xF6E81A1B.ps_5_0.hlsl │ ├── LUT_0x1F264D17.ps_5_0.hlsl │ ├── LUT_0x27EBC404.ps_5_0.hlsl │ ├── OnCopy.hlsl │ ├── PostTonemapPreLUT_0xF8F57F0A.ps_5_0.hlsl │ ├── Tonemap_0x85E777EF.ps_5_0.hlsl │ ├── Vignette_0xCDC56365.ps_5_0.hlsl │ ├── addon.cpp │ ├── final_pixel_shader.ps_5_0.hlsl │ ├── final_vertex_shader.vs_5_0.hlsl │ └── shared.h ├── ffxv │ ├── RenoDRTSmoothClamp.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── dithering_0x3F4687F4.ps_5_0.hlsl │ ├── fmv_0x66EDB0A6.ps_5_0.hlsl │ ├── glare_0xBBC1036C.ps_5_0.hlsl │ ├── postprocessing_0xDD4C5B74.ps_5_0.hlsl │ ├── postprocesssdr_0xD92625B9.ps_5_0.hlsl │ ├── shared.h │ ├── tonemap2_0x18EF8C72.ps_5_0.hlsl │ ├── tonemap_0x75DFE4B0.ps_5_0.hlsl │ ├── ui_0x369A4C39.ps_5_0.hlsl │ ├── ui_0xB4EADB83.ps_5_0.hlsl │ ├── ui_0xF2940481.ps_5_0.hlsl │ ├── uisdr_0x19D2AC4F.ps_5_0.hlsl │ ├── uisdr_0x4E3026D1.ps_5_0.hlsl │ └── uisdr_0xA12C8B65.ps_5_0.hlsl ├── fromsoft_engine │ ├── addon.cpp │ ├── armoredcore6 │ │ ├── alphablend_0xE62556A0.ps_6_0.hlsl │ │ ├── final_0x21706BCF.ps_6_0.hlsl │ │ ├── final_0x6557F4B9.ps_6_0.hlsl │ │ ├── postprocess_0xA1C7E4FA.ps_6_0.hlsl │ │ └── tonemapper_0x74971D15.ps_6_0.hlsl │ ├── common.hlsl │ ├── eldenring │ │ ├── final_0x66C073FB.ps_6_0.hlsl │ │ ├── postprocess_0x65731B28.ps_6_0.hlsl │ │ └── tonemapper_0xC6109CC1.ps_6_0.hlsl │ ├── nightreign │ │ ├── final_0x8C99CA89.ps_6_0.hlsl │ │ ├── postprocess_0xDE637154.ps_6_0.hlsl │ │ ├── tonemapper_0x0F2159FD.ps_6_0.hlsl │ │ └── tonemaptable_builder_0x72A49029.ps_6_0.hlsl │ ├── sekiro │ │ ├── final_0xDB1689BD.ps_5_0.hlsl │ │ └── tonemapper_0x775D9A9E.ps_5_0.hlsl │ └── shared.h ├── gatesofhell │ ├── addon.cpp │ ├── filmgrain_0x5D01F8B2.ps_5_0.hlsl │ ├── filmgrainfxaa_0xE9B5AE24.ps_5_0.hlsl │ ├── output_0xBEECA2A1.ps_5_0.hlsl │ ├── outputfxaa_0x29734F1A.ps_5_0.hlsl │ ├── outputwinter_0x63C0CB00.ps_5_0.hlsl │ ├── outputwinterfxaa_0x43E47E9E.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── winterfilmgrain_0x3BA9AE4E.ps_5_0.hlsl │ └── winterfilmgrainfxaa_0xA908D96C.ps_5_0.hlsl ├── generic │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── gfl2 │ ├── 0x15EB4AF2.ps_4_0.hlsl │ ├── 0x20133A8B.ps_4_0.hlsl │ ├── 0x55396C7C.ps_4_0.hlsl │ ├── 0x82BAB1D5.ps_4_0.hlsl │ ├── 0xA1661D35.ps_4_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── ghostwiretokyo │ ├── addon.cpp │ ├── common.hlsli │ ├── composite │ │ ├── composite.hlsli │ │ └── composite_hdr10_0x9E133F65.ps_5_0.hlsl │ ├── lutbuilder │ │ ├── CBuffers │ │ │ └── CBuffers_LUTbuilder.hlsli │ │ ├── filmiclutbuilder.hlsli │ │ ├── filmtonemap.hlsli │ │ ├── lutbuilder_hdr-main_0x12BD1FB5.cs_5_0.hlsl │ │ ├── lutbuilder_main-menu_0xBF1ADF32.cs_5_0.hlsl │ │ └── lutbuildercommon.hlsli │ └── shared.h ├── gomechaball │ ├── UI_0x6A0916CC.ps_4_0.hlsl │ ├── UI_0xBF5F6486.ps_4_0.hlsl │ ├── UI_0xD832F5CE.ps_4_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── uber_0x08AF553D.ps_4_0.hlsl │ └── uber_0x752BD1C8.ps_4_0.hlsl ├── gotsushima │ ├── PsCopyToBackBufferHdrPqFromSrgbx_0x53EBE0F3.ps_6_6.hlsl │ └── PsPostHdr_0x313ABA52.ps_6_6.hlsl ├── gow2018 │ ├── GammaAdjustPass_0xB59D6558.ps_5_0.hlsl │ ├── HDRCalibration_0x8A2543B3.ps_5_0.hlsl │ ├── PQEncode_0x279D11F6.ps_5_0.hlsl │ ├── PQEncode_TAA_0xF4EFA04D.ps_5_0.hlsl │ ├── SampleLUT_0x7818463E.ps_5_0.hlsl │ ├── SampleLUT_TAA_0x6FE3FEEA.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsli │ └── shared.h ├── gowragnarok │ ├── addon.cpp │ ├── bloom_0xF1E4F5FE.cs_6_6.hlsl │ ├── calibration_0x4BB65477.ps_6_6.hlsl │ ├── common.hlsli │ ├── compute_bloom_0xC66F9B98.cs_6_6.hlsl │ ├── final_0x903B49C1.ps_6_6.hlsl │ ├── shared.h │ └── tonemap_0x4D780747.cs_6_6.hlsl ├── greedfall │ ├── LUT_0x5EB8FCF2.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── last_0x457E22C2.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── tonemap_0x2594436A.ps_5_0.hlsl │ ├── videos_0x99BBA5F9.ps_5_0.hlsl │ └── worldmap_0x94CFA97C.ps_5_0.hlsl ├── grimdawn │ ├── addon.cpp │ ├── common.hlsl │ ├── gd_bloom_0xC1840244.ps_5_0.hlsl │ ├── gd_grading_0x218C1B45.ps_5_0.hlsl │ ├── gd_uibloom_0x776D4935.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── tqa_bloom_0xBA78C71F.ps_5_0.hlsl │ ├── tqa_final_0xEC03DDE0.ps_5_0.hlsl │ └── tqa_video_0xC8F0C45C.ps_5_0.hlsl ├── gtav-enhanced │ ├── PS_BinkNoAlpha_0x7EABC435.ps_6_0.hlsl │ ├── PS_BlitCalibration_0xC44FC390.ps_6_0.hlsl │ ├── PS_LensDistortion_0x9A3213A0.ps_6_0.hlsl │ ├── PS_Sharpen_0x3A668290.ps_6_0.hlsl │ ├── PS_corona_0x3025A695.ps_6_0.hlsl │ ├── PS_puddleMaskAndPassCombined_0x4BA8AA92.ps_6_0.hlsl │ ├── addon.cpp │ ├── composite │ │ ├── PS_CompositeExtraFX_0xED97A548.ps_6_0.hlsl │ │ ├── PS_CompositeHHExtraFX_0x561305D2.ps_6_0.hlsl │ │ ├── PS_CompositeHighDOFExtraFX_0xD0746A48.ps_6_0.hlsl │ │ ├── PS_CompositeHighDOFHHExtraFX_0xA695CEB0.ps_6_0.hlsl │ │ ├── PS_CompositeHighDOFNV_0x40497C42.ps_6_0.hlsl │ │ ├── PS_CompositeMBExtraFX_0x01C9FD7F.ps_6_0.hlsl │ │ ├── PS_CompositeMBHHExtraFX_0xA9CCF727.ps_6_0.hlsl │ │ ├── PS_CompositeMBHighDOFExtraFX_0xB3DDE381.ps_6_0.hlsl │ │ ├── PS_CompositeMBHighDOFHHExtraFX_0xE83B0B7E.ps_6_0.hlsl │ │ ├── PS_CompositeMBHighDOFNV_0x7DCEAC64.ps_6_0.hlsl │ │ ├── PS_CompositeMBShallowHighDOFExtraFX_0xA7D7E765.ps_6_0.hlsl │ │ ├── PS_CompositeMBShallowHighDOFHHExtraFX_0x88D3E3C8.ps_6_0.hlsl │ │ ├── PS_CompositeNV_0xDDB307E0.ps_6_0.hlsl │ │ ├── PS_CompositeSeeThrough_0x864A867F.ps_6_0.hlsl │ │ ├── PS_CompositeShallowHighDOFExtraFX_0xD0EB7F86.ps_6_0.hlsl │ │ ├── PS_CompositeShallowHighDOFHHExtraFX_0x2ACFAE90.ps_6_0.hlsl │ │ └── common.hlsli │ ├── light_streaks │ │ └── PS_LightStreaksBlurLow_0xefcf7ec3.ps_6_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_6_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_6_0.hlsl ├── hades │ ├── addon.cpp │ ├── blit2d_0x7F6D6130.ps_4_0.hlsl │ ├── overlay_2d_0x09A523A4.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_0.hlsl ├── hades2 │ ├── addon.cpp │ ├── base_plus_texture_0xC4177F20.ps_6_0.hlsl │ ├── bloom2_0x2A1E53CE.ps_6_0.hlsl │ ├── lutsample_0xB9AF8512.ps_6_0.hlsl │ ├── lutsampler_2_0xC0F402E1.ps_6_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_6_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_6_0.hlsl ├── haste │ ├── addon.cpp │ ├── common.hlsl │ ├── customcolors_0xF4969CCA.ps_4_0.hlsl │ ├── finalpostprocessing_0x366EE13E.ps_5_0.hlsl │ ├── shared.h │ ├── speed_0xBC91F40D.ps_4_0.hlsl │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uber2_0xF47A06A5.ps_4_0.hlsl │ ├── uber3_0x769A74FB.ps_4_0.hlsl │ └── uber_0xEF7C8F91.ps_4_0.hlsl ├── hatintime │ ├── 0xDBFD3C81.ps_3_0.hlsl │ ├── 0xE9ADC9F0.ps_3_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── hellblade2 │ ├── 00_final_0xF8FDC1FD.hlsl │ ├── xx_hdr_tonemap_0x189339AE.ps_6_6.hlsl │ ├── xx_postprocess.0x189339AE.hlsl │ └── xx_sdr_tonemap_0x04ADCFEC.ps_6_6.hlsl ├── hitmanwoa │ ├── HDR_ResolvePC_PQ_PS_0xB8C4A20F.ps_6_0.hlsl │ ├── SharpenCAS_CS_0x7AF0FDF0.cs_6_0.hlsl │ ├── addon.cpp │ ├── common.hlsli │ ├── lutbuilder │ │ ├── AtlasToVolumeCS_0xA5D1AC1C.cs_6_0.hlsl │ │ ├── AtlasToVolumeHDRCS_0x28DA45DF.cs_6_0.hlsl │ │ ├── AtlasToVolumeHDRCS_0xDE173D3A.cs_6_0.hlsl │ │ ├── AtlasToVolumeInputGamma2CS_0x39C6BEB9.cs_6_0.hlsl │ │ └── AtlasToVolumeInputGamma2CS_0xDCE92999.cs_6_0.hlsl │ ├── shared.h │ ├── tonemap │ │ ├── PostChainMergeH2_CS_0xF1BBF459.cs_6_0.hlsl │ │ └── PostChainMergeHC2_CS_0x63B50BE6.cs_6_0.hlsl │ └── untestedtonemap │ │ ├── PostChainMergeH0_CS_0x95CD5961.cs_6_0.hlsl │ │ ├── PostChainMergeH0_CS_0xF6DAF1DF.cs_6_0.hlsl │ │ ├── PostChainMergeH1_CS_0xCE876A0D.cs_6_0.hlsl │ │ ├── PostChainMergeH1_CS_0xD838235A.cs_6_0.hlsl │ │ ├── PostChainMergeH2_CS_0x8CCFE2BB.cs_6_0.hlsl │ │ ├── PostChainMergeHC0_CS_0x95A099FF.cs_6_0.hlsl │ │ ├── PostChainMergeHC0_CS_0xE4E447DD.cs_6_0.hlsl │ │ ├── PostChainMergeHC1_CS_0x6D669BFE.cs_6_0.hlsl │ │ ├── PostChainMergeHC1_CS_0xEEBF78D3.cs_6_0.hlsl │ │ ├── PostChainMergeHC2_CS_0xD48BA4DA.cs_6_0.hlsl │ │ ├── PostChainMergeHCSD0_CS_0x8CECEA86.cs_6_0.hlsl │ │ ├── PostChainMergeHCSD0_CS_0xEA50F5CD.cs_6_0.hlsl │ │ ├── PostChainMergeHCSD1_CS_0xA3EBBD3C.cs_6_0.hlsl │ │ ├── PostChainMergeHCSD1_CS_0xA46CA16A.cs_6_0.hlsl │ │ ├── PostChainMergeHCSD2_CS_0xAFB7CA70.cs_6_0.hlsl │ │ ├── PostChainMergeHCSD2_CS_0xDDF4B268.cs_6_0.hlsl │ │ ├── PostChainMergeHSD0_CS_0x3B033485.cs_6_0.hlsl │ │ ├── PostChainMergeHSD0_CS_0xB4ECC9C6.cs_6_0.hlsl │ │ ├── PostChainMergeHSD1_CS_0x08D00147.cs_6_0.hlsl │ │ ├── PostChainMergeHSD1_CS_0x4D603402.cs_6_0.hlsl │ │ ├── PostChainMergeHSD2_CS_0x366D97EE.cs_6_0.hlsl │ │ └── PostChainMergeHSD2_CS_0x96A6EB8E.cs_6_0.hlsl ├── hollowcocoon │ ├── HDRPfinal2_0xF507A307.ps_5_0.hlsl │ ├── HDRPfinal3_0x4C2AF525.ps_5_0.hlsl │ ├── HDRPfinal_0x20F00CF5.ps_5_0.hlsl │ ├── LutBuilder3D2_0x6811A33B.cs_5_0.hlsl │ ├── LutBuilder3D_0x5BD02347.cs_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── richfxoverlay2_0x54DC7E29.ps_4_0.hlsl │ ├── richfxoverlay_0x51381740.ps_4_0.hlsl │ ├── shared.h │ ├── uberpost2_0xD6B5AD4A.cs_5_0.hlsl │ └── uberpost_0xFDF96092.cs_5_0.hlsl ├── hollowknight-silksong │ ├── addon.cpp │ ├── blit_0x20133A8B.ps_4_0.hlsl │ ├── bloom_composite_0x5D9A0B26.ps_4_0.hlsl │ ├── bloom_generate_0x814E8EBF.ps_4_0.hlsl │ ├── hero_light_0xC80BBEC9.ps_4_0.hlsl │ ├── image_effects_deband_0x753AB8B1.ps_4_0.hlsl │ ├── render │ │ ├── blend_screen_0x85C89D5B.ps_4_0.hlsl │ │ ├── blend_vertex_color_0x97452557.ps_4_0.hlsl │ │ ├── blit_0x49E25D6C.ps_4_0.hlsl │ │ ├── custom_heat_effect_0xFAD9AE26.ps_4_0.hlsl │ │ ├── custom_scroll_texture_0x9DD838E1.ps_4_0.hlsl │ │ ├── custom_tiled_scrolling_fog_0x49B8D6BC.ps_4_0.hlsl │ │ ├── darkness_sprite_0xABEFF257.ps_4_0.hlsl │ │ ├── default_color_flash_0x481C811C.ps_4_0.hlsl │ │ ├── default_mix_channels_0xD90B4A05.ps_4_0.hlsl │ │ ├── fast_bloom_0x914677F5.ps_4_0.hlsl │ │ ├── grass_diffuse_0x352EE5DD.ps_4_0.hlsl │ │ ├── light_blur_0x4E2F49B3.ps_4_0.hlsl │ │ ├── light_blur_0xC7659A76.ps_4_0.hlsl │ │ ├── screen_space_blit_0xE73F8180.ps_4_0.hlsl │ │ ├── sprites_default_0xBC821AE4.ps_4_0.hlsl │ │ ├── sprites_diffuse_0x4EF4BBC4.ps_4_0.hlsl │ │ ├── sprites_lit_0x4E675822.ps_4_0.hlsl │ │ ├── sprites_lit_0xB38056CD.ps_4_0.hlsl │ │ ├── sprites_lit_0xF033C2D9.ps_4_0.hlsl │ │ ├── sprites_screen_0x7418DC7D.ps_4_0.hlsl │ │ ├── sprites_screen_0xA690D51D.ps_4_0.hlsl │ │ └── sprites_tiled_scrolling_masked_0x13162519.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── text_distance_field_0x3F6F9F98.ps_4_0.hlsl │ ├── text_distance_field_0x771E9D45.ps_4_0.hlsl │ ├── uber_post_process_0xDD377C05.ps_4_0.hlsl │ ├── uber_post_process_lut_0x871453FD.ps_4_0.hlsl │ ├── uber_post_process_lut_contrast_0x12E5FE2B.ps_4_0.hlsl │ ├── ui_default_0x066C98CB.ps_4_0.hlsl │ ├── unlit_texture_0x2FDE313D.ps_4_0.hlsl │ ├── video_decode_0x8674BE1F.ps_4_0.hlsl │ └── vignette_0xC1DEEA0C.ps_4_0.hlsl ├── hollowknight │ ├── addon.cpp │ ├── blend_linear_dodge_0x6521A6DC.ps_4_0.hlsl │ ├── blend_linear_light_0xC80BBEC9.ps_4_0.hlsl │ ├── blend_overlay_0xA3EC6888.ps_4_0.hlsl │ ├── blend_screen_0x85C89D5B.ps_4_0.hlsl │ ├── blend_vivid_light_0x9A477D11.ps_4_0.hlsl │ ├── blit_0x20133A8B.ps_4_0.hlsl │ ├── bloom2_0x5D9A0B26.ps_4_0.hlsl │ ├── bloom3_0x814E8EBF.ps_4_0.hlsl │ ├── bloom_0x831FCA18.ps_4_0.hlsl │ ├── brightness_0x21F7FC48.ps_4_0.hlsl │ ├── color_correction_0x488FE86B.ps_4_0.hlsl │ ├── custom_blit_screen_space_0xE73F8180.ps_4_0.hlsl │ ├── custom_heat_effect_0x7BDC5643.ps_4_0.hlsl │ ├── hollow_knight_grass_diffuse_0xEAEDC29D.ps_4_0.hlsl │ ├── hollow_knight_light_blur_0x4E2F49B3.ps_4_0.hlsl │ ├── hollow_knight_light_blur_0xC7659A76.ps_4_0.hlsl │ ├── legacy_particles_alpha_blend_0x2EDC3804.ps_4_0.hlsl │ ├── legacy_particles_multiply_0xCCC102EE.ps_4_0.hlsl │ ├── noise_grain_0x0BF02D38.ps_4_0.hlsl │ ├── noise_grain_0xF1B9A141.ps_4_0.hlsl │ ├── particles_additive_0xC8BED5C6.ps_4_0.hlsl │ ├── shared.h │ ├── sprites_color_flash_0xFC27B617.ps_4_0.hlsl │ ├── sprites_default_0x55CC633B.ps_4_0.hlsl │ ├── sprites_default_0xBC821AE4.ps_4_0.hlsl │ ├── sprites_diffuse_0x4EF4BBC4.ps_4_0.hlsl │ ├── sprites_diffuse_0xFA816188.ps_4_0.hlsl │ ├── tk2d_blend_0x97452557.ps_4_0.hlsl │ ├── ui_blur_0x39BAA143.ps_4_0.hlsl │ ├── ui_blur_0x4D4340BE.ps_4_0.hlsl │ ├── ui_blur_0x65DA673D.ps_4_0.hlsl │ ├── ui_blur_0x8ADA14EE.ps_4_0.hlsl │ ├── ui_blur_0x99C781AD.ps_4_0.hlsl │ ├── video_composite_0x8A6BCB4C.ps_4_0.hlsl │ └── video_decode_0x41D51EB2.ps_4_0.hlsl ├── honkai-starrail │ ├── DICE.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── lutbuilder_0x12F5D245.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── tonemap.hlsli │ ├── uberpost0_0x93121324.ps_4_0.hlsl │ ├── uberpost1_0x318A9DF6.ps_4_0.hlsl │ ├── uberpost2_0xB2079998.ps_4_0.hlsl │ └── uberpost3_0x1AC9F8BC.ps_4_0.hlsl ├── horizonfw │ ├── addon.cpp │ ├── shared.h │ └── tonemapper_0x81FF83CE.ps_6_6.hlsl ├── indygreatcircle │ ├── 0x3AF8585D.comp.glsl │ ├── 0x3AF8585D.comp.spv │ ├── 0x808B7411.comp.glsl │ ├── 0x808B7411.comp.spv │ ├── 0x8EF24715.comp.glsl │ ├── 0x8EF24715.comp.spv │ ├── 0x94CF25A1.comp.glsl │ ├── 0x94CF25A1.comp.spv │ ├── 0x9E8B52A6.comp.glsl │ ├── 0x9E8B52A6.comp.spv │ ├── addon.cpp │ └── include │ │ └── common.glsl ├── jedisurvivor │ ├── 00_composite_0xB29D20D3.ps_6_1.hlsl │ ├── 02_ui_effect_0x6CAB7CCC.ps_6_1.hlsl │ ├── 03_fisheye_0x0B7B2D74.ps_6_1.hlsl │ ├── 04_depth_0xF0DA2ECA.ps_6_1.hlsl │ ├── 05_lower_vignette_0xD023A69B.ps_6_1.hlsl │ ├── 06_copy_0xD14395A5.ps_6_1.hlsl │ ├── 07_tonemap_0x26968588.ps_6_1.hlsl │ ├── 09_lensflare_0xE494B6C3.ps_6_1.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── includes │ │ └── lutbuilder_cbuffer.hlsl │ ├── lutbuilders │ │ ├── 01_ui_lutbuilder_0x5BD1F90C.ps_6_1.hlsl │ │ ├── 08_lutbuilder_0x90BEE5D9.ps_6_1.hlsl │ │ └── lutscaling.hlsl │ └── shared.h ├── journey │ ├── addon.cpp │ ├── common.hlsl │ ├── distortion_0x119254CB.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── tonemap_msaa1_0xF455A9E6.ps_5_0.hlsl │ └── tonemap_msaa2x4x8_0xDC5E1801.ps_5_0.hlsl ├── justcause4 │ ├── 00_ui_background_0x2A6705F5.ps_5_0.hlsl │ ├── 01_uianim_0xA293670C.ps_5_0.hlsl │ ├── 02_ui_icons_0x121F4325.ps_5_0.hlsl │ ├── 03_ui_background_0x0BD2C9BA.ps_5_0.hlsl │ ├── 04_subtitles_0x9BA33763.ps_5_0.hlsl │ ├── 05_ui_selection_0xE6453EB0.ps_5_0.hlsl │ ├── 06_ui_background_0x192E4012.ps_5_0.hlsl │ ├── 07_video_0x3C417D7D.ps_5_0.hlsl │ ├── 07_video_0x9D9CE449.ps_5_0.hlsl │ ├── 08_output_0x353A9EDA.ps_5_0.hlsl │ ├── 09_taa_0x528CB4B5.ps_5_0.hlsl │ ├── 10_motionblur_0xF95B4239.ps_5_0.hlsl │ ├── 13_overlay_0xD5E94F6D.ps_5_0.hlsl │ ├── 17_tonemapper_a_0xB3A6A785.ps_5_0.hlsl │ ├── 17_tonemapper_b_0xB2DE2A96.ps_5_0.hlsl │ ├── 17_tonemapper_c_0x897995AE.ps_5_0.hlsl │ ├── addon.cpp │ ├── shared.h │ └── xx_0x82BED845.ps_5_0.hlsl ├── karmathedarkworld │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x92D4B659.ps_6_6.hlsl │ ├── lutbuilder_0x08B5389E.ps_6_6.hlsl │ ├── lutbuilder_0x50F22BD6.ps_6_6.hlsl │ ├── lutbuilder_0x773A9497.ps_6_6.hlsl │ ├── lutbuilder_0x8119F75A.ps_6_6.hlsl │ └── shared.h ├── kingdomcome2 │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x7E3AC33A.ps_6_2.hlsl │ ├── final_0xD08FBEE8.ps_6_2.hlsl │ ├── final_pq_0x655A1131.ps_6_2.hlsl │ ├── output_0x25F7146E.ps_6_2.hlsl │ ├── output_0x5A55C4CE.ps_6_2.hlsl │ ├── output_0xD03D8BB7.ps_6_2.hlsl │ ├── output_0xF65671C3.ps_6_2.hlsl │ ├── output_inventory_0x3FF21050.ps_6_2.hlsl │ ├── output_inventory_0x4B086F2C.ps_6_2.hlsl │ ├── output_sdr_0xEA7A4DB8.ps_6_2.hlsl │ ├── output_sdr_0xF78CAE51.ps_6_2.hlsl │ └── shared.h ├── koarr │ ├── addon.cpp │ ├── colorcorrectionmerge_0x1DA0D576.ps_4_0.hlsl │ ├── combineeffects2_0x70CEAF26.ps_4_0.hlsl │ ├── combineeffects_0xD11C77B6.ps_4_0.hlsl │ ├── common.hlsl │ ├── fxaa_0x8159D8EB.ps_4_0.hlsl │ ├── rsui1_0xE76323E6.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ └── videos_0x138CBA83.ps_4_0.hlsl ├── kunitsugami │ ├── FXAA_0x19FB065F.ps_6_6.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x8DC04BF4.ps_6_6.hlsl │ ├── final_intro_0x38C3D37E.ps_6_6.hlsl │ ├── final_sdr_0xBD603220.ps_6_6.hlsl │ ├── postprocess00_0x10DD2F68.ps_6_6.hlsl │ ├── postprocess01_0xECC0C006.ps_6_6.hlsl │ ├── postprocess02_sdr_0x98F9A8BE.ps_6_6.hlsl │ ├── postprocess03_sdr_0xC003173B.ps_6_6.hlsl │ └── shared.h ├── lanoire │ ├── 00_colorvideo_0x77E6AD1C.ps_4_0.hlsl │ ├── 00_uiicons_0xA4621F49.ps_4_0.hlsl │ ├── 01_uialpha_0x231D2C5F.ps_4_0.hlsl │ ├── 02_bwvideo_0x10A3CFDD.ps_4_0.hlsl │ ├── 02_uitext_0x7C03A997.ps_4_0.hlsl │ ├── 03_letterbox_0xA558B81D.ps_4_0.hlsl │ ├── 04_uitextures_0x496A13D7.ps_4_0.hlsl │ ├── 05_fxaax3_0xB350D2FF.ps_4_0.hlsl │ ├── 06_composite_0xE45962D5.ps_4_0.hlsl │ ├── 07_color_0x5C27CB17.ps_4_0.hlsl │ ├── 99_clear_0x156045DD.ps_4_0.hlsl │ ├── addon.cpp │ └── shared.h ├── lastepoch │ ├── HxVolumetricApply_0xC32E5F94.ps_4_0.hlsl │ ├── LUT3DBaker_0x6EA48EC8.cs_5_0.hlsl │ ├── SMAA2_0x4B83BA2B.ps_4_0.hlsl │ ├── TAA_0xB5EA3401.ps_4_0.hlsl │ ├── UIalpha_0xB11B9B50.ps_4_0.hlsl │ ├── UIeffectshiny_0xF18BD84B.ps_4_0.hlsl │ ├── UIgamepad_0x752CC6FA.ps_4_0.hlsl │ ├── addon.cpp │ ├── cameralight_0x900045BA.ps_4_0.hlsl │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── outline_0x15096C7B.ps_4_0.hlsl │ ├── postfinal_0x366EE13E.ps_5_0.hlsl │ ├── postfinalfxaa_0xCC8B6ACF.ps_5_0.hlsl │ ├── shared.h │ ├── timetravel_0xD8EECF85.ps_4_0.hlsl │ ├── uberpostTM_0x9DD6F785.ps_4_0.hlsl │ ├── uberpost_0x63D93240.ps_4_0.hlsl │ └── worldmap_0x67B5C47D.ps_4_0.hlsl ├── lostinrandom │ ├── LutBuilderLdr_0xB3DF43CA.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── fxaa1_0x8EF2D0AE.ps_4_0.hlsl │ ├── postfinal_0x0D7738C5.ps_4_0.hlsl │ ├── shared.h │ ├── theeternaldie │ │ ├── LutBuilderLdr0x13EEF169.ps_4_0.hlsl │ │ ├── fsr1_fxaa_0xE102D2F9.ps_4_0.hlsl │ │ ├── fsr_0xC244242D.ps_4_0.hlsl │ │ ├── fxaa_0xD00B5B47.ps_5_0.hlsl │ │ ├── no_rcas_0xB1CE8C1C.ps_5_0.hlsl │ │ ├── rcas_0x7CEF5F47.ps_5_0.hlsl │ │ ├── uberpostUI_0x9862BA48.ps_4_0.hlsl │ │ ├── uberpost_0xE5C37261.ps_4_0.hlsl │ │ └── uberpost_0xEF39E7C4.ps_4_0.hlsl │ ├── uberpost2_0x4B92CD8E.ps_4_0.hlsl │ ├── uberpost3_0x72D26F35.ps_4_0.hlsl │ └── uberpost_0xA9329B7F.ps_4_0.hlsl ├── lostplanet │ ├── addon.cpp │ ├── final00_0x7EC02107.ps_4_0.hlsl │ ├── final01_0xC1C7045A.ps_4_0.hlsl │ ├── finalac_0x7952DC10.ps_4_0.hlsl │ ├── finalfs_0xB2AD4F48.ps_4_0.hlsl │ ├── postprocess08_clamp_0x98F668B5.ps_4_0.hlsl │ └── shared.h ├── lunacid │ ├── 0x200666E0.ps_4_0.hlsl │ ├── 0x20133A8B.ps_4_0.hlsl │ ├── 0x44C64DF9.ps_4_0.hlsl │ ├── 0x49E25D6C.ps_4_0.hlsl │ ├── 0xF486AD70.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── gamma_0x8B95E491.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uber_midnight_0x34A4537A.ps_4_0.hlsl │ ├── uber_silent_0x5ED6AF8F.ps_4_0.hlsl │ ├── uber_vaporwave_0x05004E3A.ps_4_0.hlsl │ ├── vhs1_0x8C536A08.ps_4_0.hlsl │ └── vhs2_0xAD4AD0B9.ps_4_0.hlsl ├── lysfanga │ ├── LutBuilderLdr_0xED457D04.ps_4_0.hlsl │ ├── UIshadow_0x36588C4F.ps_4_0.hlsl │ ├── UItext2_0xC1457489.ps_4_0.hlsl │ ├── UItext_0x55B0DCB7.ps_4_0.hlsl │ ├── UIuberpost_0xBB09D0B3.ps_4_0.hlsl │ ├── addon.cpp │ ├── bloom_0x5FDD841D.ps_4_0.hlsl │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── shared.h │ ├── uberpost2_0x2C36979C.ps_4_0.hlsl │ ├── uberpost3_0x9A27FDCD.ps_4_0.hlsl │ ├── uberpost4_0x9D2A9AD7.ps_4_0.hlsl │ ├── uberpost_0x22F1555A.ps_4_0.hlsl │ └── uberpost_0xE651D798.ps_4_0.hlsl ├── madmax │ ├── addon.cpp │ ├── common.hlsl │ ├── fog_0x11F149D6.ps_5_0.hlsl │ ├── graffiti_0x2BF608F1.ps_5_0.hlsl │ ├── graffiti_2_0xAB7123BC.ps_5_0.hlsl │ ├── indoor_light_0x38A599E8.ps_5_0.hlsl │ ├── lens_flare_0xB4E43807.ps_5_0.hlsl │ ├── map_threat_0x49E82873.ps_5_0.hlsl │ ├── pass_1_0x83FCCE5D.ps_5_0.hlsl │ ├── pass_2_0x058D8234.ps_5_0.hlsl │ ├── pass_3_0x66C17996.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── tonemap_1dh_0x1FD18E12.ps_5_0.hlsl │ ├── tonemap_1dn_0x569C5E86.ps_5_0.hlsl │ ├── tonemap_2dh_0xBEC13FF0.ps_5_0.hlsl │ ├── tonemap_2dn_0xDF35C719.ps_5_0.hlsl │ ├── tonemap_3dh_0xB755AB0F.ps_5_0.hlsl │ ├── tonemap_3dn_0x4DCDF058.ps_5_0.hlsl │ ├── tonemap_4dh_0xF6A0E5D2.ps_5_0.hlsl │ ├── tonemap_5dn_0xC39EC40D.ps_5_0.hlsl │ ├── tonemap_6_0x57CE885C.ps_5_0.hlsl │ ├── tonemap_7_0x254ED214.ps_5_0.hlsl │ ├── ui_0x611D905A.ps_5_0.hlsl │ └── video_0x86A20CAF.ps_5_0.hlsl ├── mafiade │ ├── addon.cpp │ ├── common.hlsl │ ├── dof7_0x3EB9D976.ps_5_0.hlsl │ ├── fireworks_0xACD34CE7.ps_5_0.hlsl │ ├── loading_0x747C6210.ps_5_0.hlsl │ ├── lowhealth_0xD980FA68.ps_5_0.hlsl │ ├── shared.h │ ├── something_0xD47322A6.ps_5_0.hlsl │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── tonemap_0x916B1D65.ps_5_0.hlsl │ ├── videos2_0x00D96EAE.ps_5_0.hlsl │ └── videos_0xA7799306.ps_5_0.hlsl ├── masseffectle │ ├── addon.cpp │ ├── output_0x0765601C.ps_5_0.hlsl │ ├── shared.h │ ├── tonemap_me1_blur_grain_lut_0x151FE4CA.ps_5_0.hlsl │ ├── tonemap_me1_blur_lut_0x69F03340.ps_5_0.hlsl │ ├── tonemap_me1_grain_lut_0x109F3B6E.ps_5_0.hlsl │ ├── tonemap_me1_lut_0x8C8E8CA2.ps_5_0.hlsl │ ├── tonemap_me1_scene_0xAAE8755A.ps_5_0.hlsl │ ├── tonemap_me2_blur_filmic_grain_lut_0x75BFAFBC.ps_5_0.hlsl │ ├── tonemap_me2_blur_grain_lut_0x1536C5B5.ps_5_0.hlsl │ ├── tonemap_me2_blur_lut_0x2754F750.ps_5_0.hlsl │ ├── tonemap_me2_filmic_grain_lut_0xEC890842.ps_5_0.hlsl │ ├── tonemap_me2_filmic_lut_0x222186F8.ps_5_0.hlsl │ ├── tonemap_me2_grain_lut_0x8E0C0DBB.ps_5_0.hlsl │ ├── tonemap_me2_lut_0xD077D06B.ps_5_0.hlsl │ ├── tonemap_me2_scene_0xCC76075F.ps_5_0.hlsl │ ├── tonemap_me3_blur_depth_filmic_grain_lut_0x49BD5A95.ps_5_0.hlsl │ ├── tonemap_me3_blur_depth_filmic_lut_0x36B90B12.ps_5_0.hlsl │ ├── tonemap_me3_blur_filmic_grain_lut_0x5AA0BD09.ps_5_0.hlsl │ ├── tonemap_me3_blur_filmic_lut_0x00944C2E.ps_5_0.hlsl │ └── tonemap_me3_blur_scene_0x225A8330.ps_5_0.hlsl ├── maxpayne3 │ ├── addon.cpp │ ├── antialiasing │ │ ├── fxaa_high_0x3FA8CBC3.ps_5_0.hlsl │ │ └── fxaa_veryhigh_0xFBC327C8.ps_5_0.hlsl │ ├── bloom_0x57F6AAB4.ps_5_0.hlsl │ ├── common.hlsl │ ├── fmv_0x32629E1B.ps_5_0.hlsl │ ├── postfx │ │ ├── postfx_0x17ECFF74.ps_5_0.hlsl │ │ ├── postfx_0xD3F808EC.ps_5_0.hlsl │ │ ├── postfx_drug_0xCB1874B7.ps_5_0.hlsl │ │ ├── postfx_interlace_0x5770A95E.ps_5_0.hlsl │ │ ├── postfx_interlace_msaa4x_0x30842A90.ps_5_0.hlsl │ │ ├── postfx_interlace_msaa8x_0x1F296E17.ps_5_0.hlsl │ │ ├── postfx_interlace_msaa_off_0xC3EDCD63.ps_5_0.hlsl │ │ ├── postfx_msaa4x_0xB7822C98.ps_5_0.hlsl │ │ └── postfx_msaa8x_0xCC0D7856.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ └── tonemap │ │ ├── 0x01F5E795.ps_5_0.hlsl │ │ ├── 0x03A86F66.ps_5_0.hlsl │ │ ├── 0x0933B817.ps_5_0.hlsl │ │ ├── 0x0C569FD2.ps_5_0.hlsl │ │ ├── 0x0D3AF9C7.ps_5_0.hlsl │ │ ├── 0x114F4F53.ps_5_0.hlsl │ │ ├── 0x117628FE.ps_5_0.hlsl │ │ ├── 0x14AEA21C.ps_5_0.hlsl │ │ ├── 0x15B7734B.ps_5_0.hlsl │ │ ├── 0x15E1CBDD.ps_5_0.hlsl │ │ ├── 0x16CFDCB8.ps_5_0.hlsl │ │ ├── 0x17A1A6D3.ps_5_0.hlsl │ │ ├── 0x19F74577.ps_5_0.hlsl │ │ ├── 0x1AC127A1.ps_5_0.hlsl │ │ ├── 0x1E050193.ps_5_0.hlsl │ │ ├── 0x1E2ADE00.ps_5_0.hlsl │ │ ├── 0x1EA3AFF3.ps_5_0.hlsl │ │ ├── 0x1FC015A1.ps_5_0.hlsl │ │ ├── 0x23B18BD8.ps_5_0.hlsl │ │ ├── 0x25E34175.ps_5_0.hlsl │ │ ├── 0x2C22239B.ps_5_0.hlsl │ │ ├── 0x2D1B343D.ps_5_0.hlsl │ │ ├── 0x3037741F.ps_5_0.hlsl │ │ ├── 0x32FA784C.ps_5_0.hlsl │ │ ├── 0x3615A753.ps_5_0.hlsl │ │ ├── 0x3C11574E.ps_5_0.hlsl │ │ ├── 0x3E1C4800.ps_5_0.hlsl │ │ ├── 0x4E20C085.ps_5_0.hlsl │ │ ├── 0x5164E9B0.ps_5_0.hlsl │ │ ├── 0x51E829A0.ps_5_0.hlsl │ │ ├── 0x5591404A.ps_5_0.hlsl │ │ ├── 0x572E9E14.ps_5_0.hlsl │ │ ├── 0x57D8BE2F.ps_5_0.hlsl │ │ ├── 0x59F2397F.ps_5_0.hlsl │ │ ├── 0x5A714D9A.ps_5_0.hlsl │ │ ├── 0x5BDCF58B.ps_5_0.hlsl │ │ ├── 0x5D6CE5AA.ps_5_0.hlsl │ │ ├── 0x5DC18676.ps_5_0.hlsl │ │ ├── 0x5F7F2CF0.ps_5_0.hlsl │ │ ├── 0x5FEA60BA.ps_5_0.hlsl │ │ ├── 0x62FBFD42.ps_5_0.hlsl │ │ ├── 0x6577C52F.ps_5_0.hlsl │ │ ├── 0x669480A7.ps_5_0.hlsl │ │ ├── 0x69865D5B.ps_5_0.hlsl │ │ ├── 0x69A7604F.ps_5_0.hlsl │ │ ├── 0x6DCED770.ps_5_0.hlsl │ │ ├── 0x6F56C009.ps_5_0.hlsl │ │ ├── 0x76CE7813.ps_5_0.hlsl │ │ ├── 0x7A442117.ps_5_0.hlsl │ │ ├── 0x7CB0B3AA.ps_5_0.hlsl │ │ ├── 0x7FAFDA2A.ps_5_0.hlsl │ │ ├── 0x80A70632.ps_5_0.hlsl │ │ ├── 0x88668588.ps_5_0.hlsl │ │ ├── 0x8DE915B0.ps_5_0.hlsl │ │ ├── 0x8EE688FF.ps_5_0.hlsl │ │ ├── 0x90A1640C.ps_5_0.hlsl │ │ ├── 0x96C78726.ps_5_0.hlsl │ │ ├── 0x982D2E83.ps_5_0.hlsl │ │ ├── 0x985D8946.ps_5_0.hlsl │ │ ├── 0x988E0440.ps_5_0.hlsl │ │ ├── 0x9A761B73.ps_5_0.hlsl │ │ ├── 0x9ADA439F.ps_5_0.hlsl │ │ ├── 0x9D18D405.ps_5_0.hlsl │ │ ├── 0x9F31A4DD.ps_5_0.hlsl │ │ ├── 0xA20B8702.ps_5_0.hlsl │ │ ├── 0xA237779F.ps_5_0.hlsl │ │ ├── 0xA5CFC1D9.ps_5_0.hlsl │ │ ├── 0xB133932C.ps_5_0.hlsl │ │ ├── 0xB1A5D3BC.ps_5_0.hlsl │ │ ├── 0xB2AB7C39.ps_5_0.hlsl │ │ ├── 0xB3E0329B.ps_5_0.hlsl │ │ ├── 0xB481AC95.ps_5_0.hlsl │ │ ├── 0xB802E7CF.ps_5_0.hlsl │ │ ├── 0xC016166E.ps_5_0.hlsl │ │ ├── 0xC0603F3A.ps_5_0.hlsl │ │ ├── 0xC1CD0E29.ps_5_0.hlsl │ │ ├── 0xC35017A0.ps_5_0.hlsl │ │ ├── 0xC51143A4.ps_5_0.hlsl │ │ ├── 0xC92236C8.ps_5_0.hlsl │ │ ├── 0xCCD10E2A.ps_5_0.hlsl │ │ ├── 0xCD48C081.ps_5_0.hlsl │ │ ├── 0xCD5272DD.ps_5_0.hlsl │ │ ├── 0xD20F4621.ps_5_0.hlsl │ │ ├── 0xD29EAC60.ps_5_0.hlsl │ │ ├── 0xD5EC60BF.ps_5_0.hlsl │ │ ├── 0xD7538577.ps_5_0.hlsl │ │ ├── 0xDB7B34F8.ps_5_0.hlsl │ │ ├── 0xDCCD53B8.ps_5_0.hlsl │ │ ├── 0xE36C9160.ps_5_0.hlsl │ │ ├── 0xE4322A68.ps_5_0.hlsl │ │ ├── 0xE5A49BBB.ps_5_0.hlsl │ │ ├── 0xE9E20657.ps_5_0.hlsl │ │ ├── 0xEA3CC1E3.ps_5_0.hlsl │ │ ├── 0xEA3F39A4.ps_5_0.hlsl │ │ ├── 0xECCE1541.ps_5_0.hlsl │ │ ├── 0xF20EF8A7.ps_5_0.hlsl │ │ ├── 0xF225B2E1.ps_5_0.hlsl │ │ ├── 0xF803A073.ps_5_0.hlsl │ │ ├── 0xF895DAFE.ps_5_0.hlsl │ │ ├── 0xFC2389A4.ps_5_0.hlsl │ │ ├── 0xFE7B20B4.ps_5_0.hlsl │ │ ├── 0xFF318C23.ps_5_0.hlsl │ │ ├── tonemap2_0x10EE0B20.ps_5_0.hlsl │ │ ├── tonemap_0xA631D7F8.ps_5_0.hlsl │ │ └── tonemap_flash_0x4F343009.ps_5_0.hlsl ├── metaphorrefantazio │ ├── 00_final_0x1F993880.ps_5_0.hlsl │ ├── 01_overlays_0x7EB16138.ps_5_0.hlsl │ ├── 02_lut_background_0xD8196629.ps_5_0.hlsl │ ├── 03_output_0xAC103037.ps_5_0.hlsl │ ├── 04_tonemapper2_background_0xA7108284.ps_5_0.hlsl │ ├── 04_tonemapper_background_0xC1787BC6.ps_5_0.hlsl │ ├── addon.cpp │ ├── apply_smaa_0x8C9E5C72.ps_5_0.hlsl │ ├── blend_smaa_0x5732C405.ps_5_0.hlsl │ ├── bloom_0xA3109C78.ps_5_0.hlsl │ ├── fxaa_0x94D1203C.ps_5_0.hlsl │ ├── glow2_0xA5D96315.ps_5_0.hlsl │ ├── glow_0xA177E041.ps_5_0.hlsl │ ├── godray_0x0DA4540E.ps_5_0.hlsl │ ├── lightrays_0x70C6A8D7.ps_5_0.hlsl │ ├── shared.h │ ├── smaa_0xCA15EAC0.ps_5_0.hlsl │ └── tonemapper.hlsl ├── metro │ ├── addon.cpp │ ├── common.hlsl │ ├── fxaa_0x386FCE67.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uber1_0x5C867D7E.ps_5_0.hlsl │ ├── uber1_gasmask_0xF398A1ED.ps_5_0.hlsl │ ├── uber2_0xA453ADB1.ps_5_0.hlsl │ └── uber2_gasmask_0xFA7FE535.ps_5_0.hlsl ├── mgsdelta │ ├── addon.cpp │ ├── composite.hlsl │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsl │ │ ├── lutbuilder_0x3B0BE470.ps_6_6.hlsl │ │ ├── lutbuilder_0xCBE6F466.ps_6_6.hlsl │ │ ├── lutbuilder_0xFCD9074E.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsl │ ├── outputs │ │ ├── composite_hdr_0x92D4B659.ps_6_6.hlsl │ │ ├── composite_hdr_0xE53E4F75.ps_6_6.hlsl │ │ └── composite_hdr_blur_0x8DD3A88B.ps_6_6.hlsl │ └── shared.h ├── mhwilds │ ├── UI_0x8286B55C.cs_6_6.hlsl │ ├── addon.cpp │ ├── bloom_0x1AD0E9A5.ps_6_6.hlsl │ ├── bloom_0xB73F523E.ps_6_6.hlsl │ ├── common.hlsl │ ├── intermediate_0xC8169712.ps_6_6.hlsl │ ├── lilium_rcas.hlsl │ ├── localexposure_0x0BD0586C.cs_6_6.hlsl │ ├── localexposure_0xD207A699.cs_6_6.hlsl │ ├── localexposure_0xEFEED634.ps_6_6.hlsl │ ├── localexposure_gaussianblur_0x243CA65C.ps_6_6.hlsl │ ├── localexposure_rare_0x4905680A.cs_6_6.hlsl │ ├── lutbuilderSDR_0xC38C23F4.cs_6_6.hlsl │ ├── lutbuilder_0x7B84049A.cs_6_6.hlsl │ ├── output.hlsl │ ├── outputSDR_0x8F04163E.ps_6_6.hlsl │ ├── outputSDR_0xC584376B.ps_6_6.hlsl │ ├── output_0xBC05143A.ps_6_6.hlsl │ ├── output_0xE73DF341.ps_6_6.hlsl │ ├── postprocess.hlsl │ ├── postprocess_charSelect_0x8CAFE864.ps_6_6.hlsl │ ├── postprocess_disabledexposure_0x89476799.ps_6_6.hlsl │ ├── postprocess_flatexposure_0xEE56E73B.ps_6_6.hlsl │ ├── postprocess_localexposure_0xE188DA93.ps_6_6.hlsl │ ├── postprocess_sdr_0xF06499FE.ps_6_6.hlsl │ └── shared.h ├── mhworld │ ├── addon.cpp │ ├── common.hlsl │ ├── lutsample_0x4AA36DCA.ps_5_x.hlsl │ ├── output_0xF5CB9F69.ps_5_x.hlsl │ └── shared.h ├── nfs16 │ ├── UI_0x314165B5.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── tonemap2_0x54D9B89F.ps_5_0.hlsl │ ├── tonemap3_0x9FEAFC96.ps_5_0.hlsl │ ├── tonemap4_0x31A59248.ps_5_0.hlsl │ ├── tonemap5_0x54B0FAE2.ps_5_0.hlsl │ ├── tonemap_0xD11C7B85.ps_5_0.hlsl │ ├── videos3_0xBADD2507.ps_5_0.hlsl │ └── videos_0x041FA975.ps_5_0.hlsl ├── nfstr │ ├── addon.cpp │ ├── shaders │ │ ├── !common.hlsl │ │ ├── aa_0xAA4E5E89.ps_5_0.hlsl 1 │ │ ├── bloom_0xC6CEBD13.ps_5_0.hlsl 1 │ │ ├── dirttrails_0xA474208B.ps_5_0.hlsl 1 │ │ ├── dof_0xAA4E5E89.ps_5_0.hlsl 1 │ │ ├── mov_0x17B10A17.ps_5_0.hlsl │ │ ├── t_0x1D7716CE.ps_5_0.hlsl │ │ ├── t_0x1E299BCF.ps_5_0.hlsl │ │ ├── t_0x28548974.ps_5_0.hlsl │ │ ├── t_0x2CAEE74B.ps_5_0.hlsl │ │ ├── t_0x35F6FD22.ps_5_0.hlsl │ │ ├── t_0x372984C3.ps_5_0.hlsl │ │ ├── t_0x4305EDDB.ps_5_0.hlsl │ │ ├── t_0x4BE033C0.ps_5_0.hlsl │ │ ├── t_0x4E06F55E.ps_5_0.hlsl │ │ ├── t_0x5990D246.ps_5_0.hlsl │ │ ├── t_0x6F969889.ps_5_0.hlsl │ │ ├── t_0x71BC4FF7.ps_5_0.hlsl │ │ ├── t_0x7C4FA777.ps_5_0.hlsl │ │ ├── t_0x886C53B9.ps_5_0.hlsl │ │ ├── t_0x887175CD.ps_5_0.hlsl │ │ ├── t_0x8B358556.ps_5_0.hlsl │ │ ├── t_0x8C3C0250.ps_5_0.hlsl │ │ ├── t_0x939DC473.ps_5_0.hlsl │ │ ├── t_0x9BCAF0BA.ps_5_0.hlsl │ │ ├── t_0xAF213DF3.ps_5_0.hlsl │ │ ├── t_0xB97A718F.ps_5_0.hlsl │ │ ├── t_0xBE4AF207.ps_5_0.hlsl │ │ ├── t_0xCB584BC7.ps_5_0.hlsl │ │ ├── t_0xD586C942.ps_5_0.hlsl │ │ ├── t_0xFD87CC59.ps_5_0.hlsl │ │ ├── template.txt │ │ ├── ui_main_0xAC7F3E52.ps_5_0.hlsl │ │ ├── ui_pause_bg_0x3B76551B.ps_5_0.hlsl │ │ └── ui_pause_text_0xA2360DD3.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── ngsigma │ ├── UI_0x73DE4134.ps_5_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_0.hlsl ├── ngsigma2 │ ├── addon.cpp │ ├── common.hlsl │ ├── game_0x37186D2A.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_0.hlsl ├── oblivionremastered │ ├── addon.cpp │ ├── bink_videos_0x1FAA96A2.ps_6_6.hlsl │ ├── common.hlsl │ ├── eyeadaptation │ │ ├── 0x708B4D41.cs_6_6.hlslx │ │ └── eye_adaptation_0x41DCD632.cs_6_6.hlsl │ ├── lutbuilders │ │ ├── lutbuilder_0x00C34813.cs_6_6.hlsl │ │ ├── lutbuilder_0x35359B86.cs_6_6.hlsl │ │ ├── lutbuilder_0x47329E4A.cs_6_6.hlsl │ │ ├── lutbuilder_0x484B4E2B.cs_6_6.hlsl │ │ ├── lutbuilder_0x56299258.cs_6_6.hlsl │ │ ├── lutbuilder_0x57EE8201.cs_6_6.hlsl │ │ ├── lutbuilder_0x5D14010F.cs_6_6.hlsl │ │ ├── lutbuilder_0x704AB527.cs_6_6.hlsl │ │ ├── lutbuilder_0x7D28F020.cs_6_6.hlsl │ │ ├── lutbuilder_0x81243B91.cs_6_6.hlsl │ │ ├── lutbuilder_0x8AB5FB23.cs_6_6.hlsl │ │ ├── lutbuilder_0x92690156.cs_6_6.hlsl │ │ ├── lutbuilder_0x9ECC8B3C.cs_6_6.hlsl │ │ ├── lutbuilder_0xA8DA5452.cs_6_6.hlsl │ │ ├── lutbuilder_0xAF588657.cs_6_6.hlsl │ │ ├── lutbuilder_0xB439D7F0.cs_6_6.hlsl │ │ ├── lutbuilder_0xC3C5B8AD.cs_6_6.hlsl │ │ ├── lutbuilder_0xC51C976F.cs_6_6.hlsl │ │ ├── lutbuilder_0xF890095A.cs_6_6.hlsl │ │ ├── lutbuilder_0xFF16F46F.cs_6_6.hlsl │ │ └── lutbuilder_hdr_0xCBE6F466.ps_6_6.hlsl │ ├── output │ │ ├── composite_hdr_0xBF88A580.ps_6_6.hlsl │ │ ├── custom_gamma_0x70EB957B.ps_6_6.hlsl │ │ ├── output_ca_hdr_0xB7AF8D8D.ps_6_6.hlsl │ │ ├── output_ca_hdr_scale_0xEED8F029.cs_6_6.hlsl │ │ ├── output_ca_hdr_scale_sharpen_0x12E07ACC.cs_6_6.hlsl │ │ ├── output_ca_hdr_scale_sharpen_vignette_0x8E39B831.cs_6_6.hlsl │ │ ├── output_ca_hdr_scale_vignette_0x59C7FFCE.cs_6_6.hlsl │ │ ├── output_ca_hdr_sharpen_0x4B58AFCD.ps_6_6.hlsl │ │ ├── output_ca_hdr_sharpen_vignette_0xA4374A0A.ps_6_6.hlsl │ │ ├── output_ca_hdr_vignette_0x440BCDEB.ps_6_6.hlsl │ │ ├── output_ca_scale_sharpen_vignette_0x1BD60193.cs_6_6.hlsl │ │ ├── output_ca_scale_vignette_0x99B126EC.cs_6_6.hlsl │ │ ├── output_hdr_0xDBD0F5E7.ps_6_6.hlsl │ │ ├── output_hdr_scale_0xCF3ED7E2.cs_6_6.hlsl │ │ ├── output_hdr_scale_sharpen_0x15B02998.cs_6_6.hlsl │ │ ├── output_hdr_scale_sharpen_vignette_0xCC2B95BB.cs_6_6.hlsl │ │ ├── output_hdr_scale_vignette_0xB6EDB152.cs_6_6.hlsl │ │ ├── output_hdr_sharpen_0x683652C8.ps_6_6.hlsl │ │ ├── output_hdr_sharpen_vignette_0x2F45593A.ps_6_6.hlsl │ │ ├── output_hdr_vignette_0x9D0421B9.ps_6_6.hlsl │ │ ├── output_scale_sharpen_0x04C003FD.cs_6_6.hlsl │ │ ├── output_scale_vignette_0xD1CDE904.cs_6_6.hlsl │ │ └── output_vignette_0xD8972207.ps_6_6.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ └── unknown │ │ ├── 0x0C203297.cs_6_6.hlslx │ │ └── user_gamma_0x56DD5820.ps_6_6.hlslx ├── opus-eos │ ├── Bloom2D_0x25268FD8.ps_4_0.hlsl │ ├── Bloom_0x43207502.ps_4_0.hlsl │ ├── FinalPass_0xEB23B0ED.ps_5_0.hlsl │ ├── GraphicCorrection_0xA11475B7.ps_4_0.hlsl │ ├── LetterBoxShader_0x461C59CD.ps_4_0.hlsl │ ├── LocInfoImage_0xF3B40AB2.ps_4_0.hlsl │ ├── MaskBloom_0x2C10C965.ps_4_0.hlsl │ ├── SpriteGlitch_0xD068349F.ps_4_0.hlsl │ ├── StylizedWater_0xA696BC7D.ps_4_0.hlsl │ ├── Uber10_0x6CEA644C.ps_4_0.hlsl │ ├── Uber11_0xFE221F8E.ps_4_0.hlsl │ ├── Uber1_0x05D7FD3F.ps_4_0.hlsl │ ├── Uber2_0x05004E3A.ps_4_0.hlsl │ ├── Uber3_0xE4952B04.ps_4_0.hlsl │ ├── Uber4_0xADB22B5E.ps_4_0.hlsl │ ├── Uber5_0x24D21B11.ps_4_0.hlsl │ ├── Uber6_0xA833F91D.ps_4_0.hlsl │ ├── Uber7_0x1237D610.ps_4_0.hlsl │ ├── Uber8_0xE832FE2B.ps_4_0.hlsl │ ├── Uber9_0xDF21D66E.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── ori1definitive │ ├── addon.cpp │ ├── artifacts │ │ ├── artifact_0x0422C69E.ps_4_0.hlsl │ │ ├── artifact_0x11507068.ps_4_0.hlsl │ │ ├── artifact_0x1612A2ED.ps_4_0.hlsl │ │ ├── artifact_0x3D449D34.ps_4_0.hlsl │ │ ├── artifact_0x61EDCA76.ps_4_0.hlsl │ │ ├── artifact_0x74F1A9BF.ps_4_0.hlsl │ │ ├── artifact_0x7EA3E0B2.ps_4_0.hlsl │ │ ├── artifact_0x89FC4143.ps_4_0.hlsl │ │ ├── artifact_0x92EF8684.ps_4_0.hlsl │ │ ├── artifact_0x95E462F3.ps_4_0.hlsl │ │ ├── artifact_0xA5B9F647.ps_4_0.hlsl │ │ ├── artifact_0xB8F1C5BC.ps_4_0.hlsl │ │ ├── artifact_0xB932F19B.ps_4_0.hlsl │ │ ├── artifact_0xBC4BB886.ps_4_0.hlsl │ │ ├── artifact_0xC997373E.ps_4_0.hlsl │ │ ├── artifact_0xCC3D6FF7.ps_4_0.hlsl │ │ ├── artifact_0xE311E5C3.ps_4_0.hlsl │ │ ├── artifact_0xEDD7A595.ps_4_0.hlsl │ │ ├── artifact_0xF2280F92.ps_4_0.hlsl │ │ ├── artifact_0xFD5E9187.ps_4_0.hlsl │ │ ├── artifact_map_0xD6DBC682.ps_4_0.hlsl │ │ ├── artifact_memory_prologue_0x9A326CB2.ps_4_0.hlsl │ │ ├── artifact_memory_prologue_0xA0679E6A.ps_4_0.hlsl │ │ ├── artifact_plant_0x69935E20.ps_4_0.hlsl │ │ ├── artifact_water_0xDBE2402A.ps_4_0.hlsl │ │ ├── background_tree_artifact_0x08EC9524.ps_4_0.hlsl │ │ ├── cloud_artifact_0x0F10CE07.ps_4_0.hlsl │ │ ├── flower_artifact_0x791C6897.ps_4_0.hlsl │ │ ├── fruit_artifact_0x1018F519.ps_4_0.hlsl │ │ ├── fruit_artifact_0x6743CB50.ps_4_0.hlsl │ │ ├── fruit_artifact_0xE020E0E3.ps_4_0.hlsl │ │ ├── tree_alpha_0xD327EDF9.ps_4_0.hlsl │ │ └── tree_artifact_0xEF83C032.ps_4_0.hlsl │ ├── common.hlsl │ ├── final_0x52BC2F1B.ps_4_0.hlsl │ ├── game_final_0x470BECFA.ps_4_0.hlsl │ ├── game_final_no_mb_0xB31E6B7C.ps_4_0.hlsl │ ├── shared.h │ ├── uishaders │ │ ├── 0x0BC8B7AD.ps_4_0.hlsl │ │ ├── 0x89FB32DC.ps_4_0.hlsl │ │ ├── 0xF1446A0F.ps_4_0.hlsl │ │ ├── ui_0x06E0FF55.ps_4_0.hlsl │ │ ├── ui_0x0B9EF709.ps_4_0.hlsl │ │ ├── ui_0x0CBCCA15.ps_4_0.hlsl │ │ ├── ui_0x110CBF45.ps_4_0.hlsl │ │ ├── ui_0x2776C84A.ps_4_0.hlsl │ │ ├── ui_0x32BBB6EC.ps_4_0.hlsl │ │ ├── ui_0x3610A504.ps_4_0.hlsl │ │ ├── ui_0x3EE35D33.ps_4_0.hlsl │ │ ├── ui_0x405A953B.ps_4_0.hlsl │ │ ├── ui_0x57172B6F.ps_4_0.hlsl │ │ ├── ui_0xA3665A61.ps_4_0.hlsl │ │ ├── ui_0xE534D964.ps_4_0.hlsl │ │ ├── ui_0xE63F1AA1.ps_4_0.hlsl │ │ ├── ui_0xEEDE4B16.ps_4_0.hlsl │ │ └── ui_0xF5017B78.ps_4_0.hlsl │ ├── untesteduishaders │ │ ├── 0x0BF7ABF5.ps_4_0.hlsl │ │ ├── 0x4185B9AB.ps_4_0.hlsl │ │ ├── 0x7E661BCB.ps_4_0.hlsl │ │ ├── 0x844C51B1.ps_4_0.hlsl │ │ ├── 0x93682B5C.ps_4_0.hlsl │ │ ├── 0x9EF7455E.ps_4_0.hlsl │ │ ├── 0xB39B9252.ps_4_0.hlsl │ │ ├── 0xB56D6357.ps_4_0.hlsl │ │ ├── 0xB68ED355.ps_4_0.hlsl │ │ ├── 0xCA28B653.ps_4_0.hlsl │ │ ├── 0xCCC2E9D3.ps_4_0.hlsl │ │ ├── 0xD6874AF6.ps_4_0.hlsl │ │ ├── 0xDDCCAB25.ps_4_0.hlsl │ │ ├── 0xE6C66A25.ps_4_0.hlsl │ │ ├── 0xF976A2A9.ps_4_0.hlsl │ │ └── 0xFE58A410.ps_4_0.hlsl │ └── video_final_0x591107A5.ps_4_0.hlsl ├── ori2 │ ├── DICE.hlsl │ ├── RenoDRTSmoothClamp.hlsl │ ├── addon.cpp │ ├── colorgrade00_0x24182048.ps_5_0.hlsl │ ├── colorgrade01_0xD7BC63A1.ps_5_0.hlsl │ ├── colorgrade02_0x73E7A34D.ps_5_0.hlsl │ ├── colorgrade_0x063548F6.ps_5_0.hlsl │ ├── colorgrade_0x0BE6093C.ps_5_0.hlsl │ ├── colorgrade_0x0E0EE842.ps_5_0.hlsl │ ├── colorgrade_0x1A46FADC.ps_5_0.hlsl │ ├── colorgrade_0x1E8FDB7D.ps_5_0.hlsl │ ├── colorgrade_0x211F3245.ps_5_0.hlsl │ ├── colorgrade_0x28B10677.ps_5_0.hlsl │ ├── colorgrade_0x2CEC407A.ps_5_0.hlsl │ ├── colorgrade_0x34F7E01C.ps_5_0.hlsl │ ├── colorgrade_0x350163E1.ps_5_0.hlsl │ ├── colorgrade_0x37E6CB72.ps_5_0.hlsl │ ├── colorgrade_0x3F118009.ps_5_0.hlsl │ ├── colorgrade_0x3FDCF7AA.ps_5_0.hlsl │ ├── colorgrade_0x48CDE62E.ps_5_0.hlsl │ ├── colorgrade_0x4A3D4181.ps_5_0.hlsl │ ├── colorgrade_0x596B9BD3.ps_5_0.hlsl │ ├── colorgrade_0x5B0965E4.ps_5_0.hlsl │ ├── colorgrade_0x5CDE4A30.ps_5_0.hlsl │ ├── colorgrade_0x613B5403.ps_5_0.hlsl │ ├── colorgrade_0x62C79AA3.ps_5_0.hlsl │ ├── colorgrade_0x649A0B90.ps_5_0.hlsl │ ├── colorgrade_0x7C14BB2C.ps_5_0.hlsl │ ├── colorgrade_0x841FAF0A.ps_5_0.hlsl │ ├── colorgrade_0x84C7D93E.ps_5_0.hlsl │ ├── colorgrade_0x8A303253.ps_5_0.hlsl │ ├── colorgrade_0x8B1DE268.ps_5_0.hlsl │ ├── colorgrade_0x8D6097D1.ps_5_0.hlsl │ ├── colorgrade_0x8D6C34A5.ps_5_0.hlsl │ ├── colorgrade_0x8EC5798A.ps_5_0.hlsl │ ├── colorgrade_0x9AC0DEEF.ps_5_0.hlsl │ ├── colorgrade_0x9B5CC768.ps_5_0.hlsl │ ├── colorgrade_0x9DA86DCE.ps_5_0.hlsl │ ├── colorgrade_0xA6488EB2.ps_5_0.hlsl │ ├── colorgrade_0xABD8D6B7.ps_5_0.hlsl │ ├── colorgrade_0xB24C1A54.ps_5_0.hlsl │ ├── colorgrade_0xB270CA5B.ps_5_0.hlsl │ ├── colorgrade_0xC4128983.ps_5_0.hlsl │ ├── colorgrade_0xD9B57ECB.ps_5_0.hlsl │ ├── colorgrade_0xDB90C883.ps_5_0.hlsl │ ├── colorgrade_0xDE975B11.ps_5_0.hlsl │ ├── colorgrade_0xE3F6E54F.ps_5_0.hlsl │ ├── colorgrade_0xF017475F.ps_5_0.hlsl │ ├── colorgrade_0xF3917C63.ps_5_0.hlsl │ ├── colorgrade_0xF7933F3F.ps_5_0.hlsl │ ├── colorgrade_0xFCF0717A.ps_5_0.hlsl │ ├── finalpq_0xF9C2BDE1.ps_4_0.hlsl │ ├── hueHelper.hlsl │ ├── itm_0x9D323EA3.ps_4_0.hlsl │ └── shared.h ├── osirisnewdawn │ ├── BlitCopyHDRTonemap_0xD02D3BF1.ps_4_0.hlsl │ ├── LUT3DBakerACES_0x47A1239F.cs_5_0.hlsl │ ├── LUT3DBakerNeutral_0xBE750C14.cs_5_0.hlsl │ ├── UIdefault2_0x8E2521B8.ps_4_0.hlsl │ ├── UIdefault_0x066C98CB.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── shared.h │ ├── uberpost2_0x1BF2161B.ps_4_0.hlsl │ ├── uberpost3_0x2706BB7A.ps_4_0.hlsl │ ├── uberpost4_0xA34705B5.ps_4_0.hlsl │ ├── uberpostCM_0x71A4E35E.ps_4_0.hlsl │ └── uberpost_0x808BC2A2.ps_4_0.hlsl ├── outerwilds │ ├── DICE.hlsl │ ├── UIdefault_0x2B868B21.ps_4_0.hlsl │ ├── addon.cpp │ ├── bloom_0xBC65EF6F.ps_4_0.hlsl │ ├── common.hlsl │ ├── helmHUD_0x0A902442.ps_4_0.hlsl │ ├── output_0x2AA95E6B.ps_4_0.hlsl │ ├── output_0x51459A11.ps_4_0.hlsl │ ├── output_0x60C9F3A1.ps_4_0.hlsl │ ├── output_0x7F1AF2FE.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_4_0.hlsl ├── outerworlds2 │ ├── addon.cpp │ ├── composite.hlsl │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsl │ │ ├── lutbuilder_0x00251631.cs_6_6.hlsl │ │ ├── lutbuilder_0x2A6D42BB.cs_6_6.hlsl │ │ ├── lutbuilder_0xCBCF8905.ps_6_6.hlsl │ │ ├── lutbuilder_0xD43CCE0E.cs_6_6.hlsl │ │ ├── lutbuilder_0xDECDA4D9.cs_6_6.hlsl │ │ ├── lutbuilder_0xE06B93BC.cs_6_6.hlsl │ │ ├── lutbuilder_0xF85851EA.cs_6_6.hlsl │ │ └── lutbuildercommon.hlsl │ ├── outputs │ │ ├── composite_hdr_0x92D4B659.ps_6_6.hlsl │ │ ├── composite_hdr_0xE53E4F75.ps_6_6.hlsl │ │ └── composite_hdr_blur_0x8DD3A88B.ps_6_6.hlsl │ └── shared.h ├── p4g │ ├── DrawFX_0x331C4ACF.ps_5_0.hlsl │ ├── DrawMesh_0x082180F8.ps_5_0.hlsl │ ├── DrawTexture_0x8954E12A.ps_5_0.hlsl │ ├── Output_0x73C09769.ps_5_0.hlsl │ ├── addon.cpp │ └── shared.h ├── p5r │ ├── 00_clear_0xCF70BF33.ps_5_0.hlsl │ ├── 01_final_0xDE5120BF.ps_5_0.hlsl │ ├── 02_precompose_0x3C2773E3.ps_5_0.hlsl │ ├── 04_copy_0xB6E26AC7.ps_5_0.hlsl │ ├── 09_hdr_0x0D85D1F6.ps_5_0.hlsl │ ├── 0x_color_0x960502CC.ps_5_0.hlsl │ ├── 0x_ui_0x060C3E22.ps_5_0.hlsl │ ├── 0x_ui_0x23A501DC.ps_5_0.hlsl │ ├── 0x_ui_0x2944B564.ps_5_0.hlsl │ ├── 0x_ui_0x4016ED43.ps_5_0.hlsl │ ├── 0x_ui_0x5C4DD977.ps_5_0.hlsl │ ├── 0x_ui_0x7C0751EF.ps_5_0.hlsl │ ├── 0x_ui_0xAB823647.ps_5_0.hlsl │ ├── 0x_ui_0xCC71BBE3.ps_5_0.hlsl │ ├── 0x_ui_0xD434C03A.ps_5_0.hlsl │ ├── 0x_ui_0xE126DD24.ps_5_0.hlsl │ ├── 0x_ui_0xEBBDB212.ps_5_0.hlsl │ ├── addon.cpp │ ├── shared.h │ └── video_0xC6D14699.ps_5_0.hlsl ├── p5r_archive │ ├── Copy_0xB6E26AC7.ps_5_0.hlsl │ ├── HDR_BloomStar_0xC7690164.ps_5_0.hlsl │ ├── HDR_TonemapParams_BloomStar_0xE75890F6.ps_5_0.hlsl │ ├── HDR_Tonemap_BloomStar_0x67991225.ps_5_0.hlsl │ ├── Output_0xDE5120BF.ps_5_0.hlsl │ ├── PostTonemap_BloomBright_0x0D85D1F6.ps_5_0.hlsl │ ├── PostTonemap_Bloom_0x2FC8F3F8.ps_5_0.hlsl │ ├── PreTonemap_0xCD84F54A.ps_5_0.hlsl │ ├── UIDrawColor_0xE126DD24.ps_5_0.hlsl │ ├── UIDrawTexture_0xCC71BBE3.ps_5_0.hlsl │ ├── UIMenu_0x3C2773E3.ps_5_0.hlsl │ ├── X_ClampAlpha_0xFFFFFFFF.cs_5_0.hlsl │ ├── addon.cpp │ └── p5r.h ├── partyanimals │ ├── addon.cpp │ ├── common.hlsl │ ├── menu_blur_0xB237565D.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── tonemap_0x107ACDC1.ps_4_0.hlsl │ ├── tonemap_0x2E1F9ED4.ps_4_0.hlsl │ ├── tonemap_0x8EFD32D4.ps_4_0.hlsl │ ├── tonemap_0xA2ABC28D.ps_4_0.hlsl │ ├── tonemap_0xC25D14FB.ps_4_0.hlsl │ ├── tonemap_0xDDFF54DA.ps_4_0.hlsl │ ├── tonemap_0xE0B632F1.ps_4_0.hlsl │ ├── tonemap_end_round_0xF2C3C778.ps_4_0.hlsl │ ├── tonemap_lut_0x14230E0C.ps_4_0.hlsl │ ├── tonemap_lut_0x1A23BD6C.ps_4_0.hlsl │ ├── tonemap_lut_0x9FAE0204.ps_4_0.hlsl │ └── tonemap_lut_0xDD02904D.ps_4_0.hlsl ├── poptlc │ ├── Color.hlsl │ ├── ColorGradingLUT.hlsl │ ├── DICE.hlsl │ ├── LUT.hlsl │ ├── LUTShared.hlsl │ ├── LUT_0xFA1EB89D.ps_5_0.hlsl │ ├── LUT_Bloom_0xA8D65F39.ps_5_0.hlsl │ ├── LUT_Bloom_Vignette_0xDB8E089A.ps_5_0.hlsl │ ├── Math.hlsl │ ├── Oklab.hlsl │ ├── Output_0x20133A8B.ps_4_0.hlsl │ ├── addon.cpp │ └── shared.h ├── projectidiva_megamix │ ├── addon.cpp │ ├── shaders │ │ ├── common.hlsl │ │ ├── drawbinary.hlsl │ │ ├── final_0x56443BE9.ps_5_0.hlsl │ │ ├── mov_0x62D69253.ps_5_0.hlsl │ │ ├── sprite_dual_0xE67536D6.ps_5_0.hlsl │ │ ├── sprite_healthbardelta_0xD0162389.ps_5_0.hlsl │ │ ├── sprite_main_0x67B157BC.ps_5_0.hlsl │ │ ├── sprite_multiply_0x5EE147A2.ps_5_0.hlsl │ │ ├── sprite_simplest_0x26AF16B8.ps_5_0.hlsl │ │ ├── sprite_text_0x7F6C8EC7.ps_5_0.hlsl │ │ ├── swapchain_0xA200B172.ps_5_0.hlsl 1 │ │ ├── tonemap0_0x7CFCDF1A.ps_5_0.hlsl │ │ ├── tonemap1_s_0x6047C5DE.ps_5_0.hlsl │ │ ├── tonemap2_u_0x8CAB805E.ps_5_0.hlsl │ │ ├── tonemap3_su_0x87371E76.ps_5_0.hlsl │ │ ├── tonemap4_su_0xB3273DF8.ps_5_0.hlsl │ │ ├── tonemap5_f_0x55660220.ps_5_0.hlsl │ │ ├── tonemap6_fu_0x29307B56.ps_5_0.hlsl │ │ ├── tonemap7_fsu_0x5A8C281C.ps_5_0.hlsl │ │ ├── tonemap8_fs_0xCBB08175.ps_5_0.hlsl │ │ └── tonemap9_fu_0xD4CB36EE.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── rdr1 │ ├── PSApplyHDR10PQGammaCorrect.0x56F79BAD.ps_6_0.hlsl │ ├── PSMiniAdapt.0xE033AAAD.ps_6_0.hlsl │ ├── PSRDR2PostfxOptics_0xEEEE53C5.ps_6_0.hlsl │ ├── PSRDR2PostfxSoftCutsceneDof.0x9761FB07.ps_6_0.hlsl │ ├── PSRDR2PostfxSoftCutsceneDofOptics.0x632ABCB2.ps_6_0.hlsl │ ├── PSRDR2PostfxSoftDof.0xCCC43328.ps_6_0.hlsl │ ├── PSRDR2PostfxSoftDofOptics.0xE93AD74D.ps_6_0.hlsl │ ├── PSRDR2Postfx_0x4EAF2BC7.ps_6_0.hlsl │ ├── addon.cpp │ ├── hueHelper.hlsl │ ├── shared.h │ └── tonemaphelper.hlsl ├── re4remake │ ├── addon.cpp │ ├── common.hlsli │ ├── output │ │ └── ConvertRec2020PS_0x6737588D.ps_6_6.hlsl │ ├── shared.h │ ├── sharpening │ │ ├── CAS_CS_0xAE604E9E.cs_6_6.hlsl │ │ ├── CAS_CS_Scaled_0x18014A34.cs_6_6.hlsl │ │ └── sharpening.hlsli │ └── tonemap │ │ ├── PostProcess_WithTonemap │ │ ├── HDRPostProcess_WithTonemap_0x973A39FC.ps_6_6.hlsl │ │ └── NoVignette_HDRPostProcess_WithTonemap_0x1F9104F3.ps_6_6.hlsl │ │ └── PostTonemap │ │ ├── PostTonemapC4L_PS_0x38F17A43.ps_6_6.hlsl │ │ └── PostTonemap_PS_0x1A45EF38.ps_6_6.hlsl ├── re7-2r-3r-village │ ├── addon.cpp │ ├── common.hlsli │ ├── materials │ │ ├── fire_0x347EE146.ps_6_5.hlsl │ │ ├── fire_0x354291B7.ps_6_5.hlsl │ │ ├── fire_0x63E803FD.ps_6_5.hlsl │ │ ├── fire_0xEC9550E8.ps_6_5.hlsl │ │ ├── fire_expl_main_0xBBE131BE.ps_6_5.hlsl │ │ ├── fire_main_0xD9E7A740.ps_6_5.hlsl │ │ └── materials.hlsli │ ├── output │ │ ├── RE2_ConvertRec2020PS_0xAF0777E5.ps_6_5.hlsl │ │ ├── RE3_HDRCalibrationMenu_ConvertRec2020PS_0x664875D1.ps_6_5.hlsl │ │ ├── RE7_RE3_ConvertRec2020PS_0x52248E59.ps_6_5.hlsl │ │ └── REVillage_ConvertRec2020PS_0x1405D21D.ps_6_5.hlsl │ ├── shared.h │ ├── sharpening │ │ ├── RE2_RE7_FSR_CAS_CS_0x2A242DE8.cs_6_5.hlsl │ │ ├── RE3_CAS_CS_0x89E285F0.cs_6_5.hlsl │ │ ├── RE3_CAS_CS_Scaled_0x58811DE9.cs_6_5.hlsl │ │ ├── RE3_Sharpness_PS_0xB5AD79FD.ps_6_5.hlsl │ │ ├── RE7_RE2_CAS_CS_0xB6419F77.cs_6_5.hlsl │ │ ├── RE7_RE2_CAS_CS_Scaled_0xB7D6C9C5.cs_6_5.hlsl │ │ ├── REVillage_CAS_CS_0x5621C124.cs_6_5.hlsl │ │ ├── REVillage_CAS_CS_Scaled_0xEAFD9E9B.cs_6_5.hlsl │ │ ├── REVillage_Sharpness_PS_0x2EBBC5E5.ps_6_5.hlsl │ │ └── sharpening.hlsli │ └── tonemap │ │ ├── PostProcess_WithTonemap │ │ ├── RE2_3_HDRPostProcess_WithTonemap_0x314A98A7.ps_6_5.hlsl │ │ ├── RE2_3_NoVignette_HDRPostProcess_WithTonemap_0x30D8372F.ps_6_5.hlsl │ │ ├── RE7_HDRPostProcess_WithTonemap_0xAD20915B.ps_6_5.hlsl │ │ ├── REVillage_HDRPostProcess_WithTonemap_0x2F362206.ps_6_5.hlsl │ │ └── REVillage_NoVignette_HDRPostProcess_WithTonemap_0x16906EB5.ps_6_5.hlsl │ │ └── PostToneMap │ │ └── RE7_PostToneMapC4L_PS_0xE4345E78.ps_6_5.hlsl ├── reka │ ├── LutBuilder3D_0x3B4291E8.cs_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── postfinal2_0x3DA6127F.ps_5_0.hlsl │ ├── postfinal_0x02AB22C6.ps_5_0.hlsl │ ├── shared.h │ └── uberpost_0xE363E5C8.cs_5_0.hlsl ├── rememberme │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── tonemap1_0xFCE2055B.ps_3_0.hlsl │ ├── tonemap2_0x54EE43FA.ps_3_0.hlsl │ ├── tonemap3_0xAEE864DE.ps_3_0.hlsl │ └── video_0xFE45F775.ps_3_0.hlsl ├── reveil │ ├── HDRPfinal10_0xAE5E9F10.ps_5_0.hlsl │ ├── HDRPfinal11_0xEDF2CCA5.ps_5_0.hlsl │ ├── HDRPfinal12_0x5AE952EB.ps_5_0.hlsl │ ├── HDRPfinal13_0xE222056C.ps_5_0.hlsl │ ├── HDRPfinal2_0x99DC845A.ps_5_0.hlsl │ ├── HDRPfinal3_0xD723C6F4.ps_5_0.hlsl │ ├── HDRPfinal4_0x228A2030.ps_5_0.hlsl │ ├── HDRPfinal5_0x214D1051.ps_5_0.hlsl │ ├── HDRPfinal6_0x9BDBCC02.ps_5_0.hlsl │ ├── HDRPfinal8_0x0736E454.ps_5_0.hlsl │ ├── HDRPfinal9_0x2CE4C824.ps_5_0.hlsl │ ├── HDRPfinal_0xBDEF4B88.ps_5_0.hlsl │ ├── LutBuilder3D2_0xB2C2262A.cs_5_0.hlsl │ ├── LutBuilder3D_0xF5AC76A9.cs_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── shared.h │ ├── uberpost2_0xCF6E0603.cs_5_0.hlsl │ ├── uberpost3_0x9B5C1401.cs_5_0.hlsl │ ├── uberpost_0xF1A75575.cs_5_0.hlsl │ └── videos_0x8A6BCB4C.ps_4_0.hlsl ├── risetombraider │ ├── addon.cpp │ ├── bloom_0x0971078C.ps_5_x.hlsl │ ├── final_copy_0x2082055F.ps_5_x.hlsl │ ├── final_copy_0x3D0F897E.ps_5_x.hlsl │ ├── gamma_0x84DEB744.ps_5_x.hlsl │ ├── gamma_0xECE920AB.ps_5_x.hlsl │ ├── lens_flare_0x980DB0E0.ps_5_x.hlsl │ ├── motion_blur_0xEC7D28FE.ps_5_x.hlsl │ ├── reinhard_extended_0x4CC2B543.ps_5_x.hlsl │ ├── scanlines2_0xFCAB6FA9.ps_5_x.hlsl │ ├── scanlines_0xC0935428.ps_5_x.hlsl │ ├── shared.h │ ├── tonemap_0x6402D0CC.ps_5_x.hlsl │ ├── tonemap_0x7D540A59.ps_5_x.hlsl │ ├── tonemap_0xB74D6870.ps_5_x.hlsl │ └── tonemap_0xDCF3B2C0.ps_5_x.hlsl ├── roadhogengine │ ├── addon.cpp │ ├── common.hlsl │ ├── gamma_0xC567CE8A.ps_4_0.hlsl │ ├── hardresetredux │ │ ├── rip_0x23F2025E.ps_4_0.hlsl │ │ ├── tonemap_0x2FF3AD78.ps_4_0.hlsl │ │ ├── tonemap_0x38396D4E.ps_4_0.hlsl │ │ ├── tonemap_0x39A21265.ps_4_0.hlsl │ │ ├── tonemap_0x4338D617.ps_4_0.hlsl │ │ ├── tonemap_0x45405040.ps_4_0.hlsl │ │ ├── tonemap_0x5D1BC502.ps_4_0.hlsl │ │ ├── tonemap_0x6AEB4E45.ps_4_0.hlsl │ │ ├── tonemap_0x769FB187.ps_4_0.hlsl │ │ ├── tonemap_0x79D405C5.ps_4_0.hlsl │ │ ├── tonemap_0x852CCF05.ps_4_0.hlsl │ │ ├── tonemap_0xA6B01AE0.ps_4_0.hlsl │ │ ├── tonemap_0xA8F9150B.ps_4_0.hlsl │ │ ├── tonemap_0xAD092DF9.ps_4_0.hlsl │ │ ├── tonemap_0xBA01D096.ps_4_0.hlsl │ │ ├── tonemap_0xE29A7A29.ps_4_0.hlsl │ │ ├── tonemap_0xE56AC1BF.ps_4_0.hlsl │ │ ├── tonemap_0xEF480D6C.ps_4_0.hlsl │ │ └── videos_0x8FACEF64.ps_4_0.hlsl │ ├── shadowwarrior2 │ │ ├── UI_0x10CE0E36.ps_5_0.hlsl │ │ ├── UI_0x320A7BCC.ps_5_0.hlsl │ │ ├── UI_0x4D593A55.ps_5_0.hlsl │ │ ├── UI_0x57D8F01E.ps_5_0.hlsl │ │ ├── UI_0x5B0B9295.ps_5_0.hlsl │ │ ├── UI_0x7DC0A614.ps_5_0.hlsl │ │ ├── UI_0x7DE48FFA.ps_5_0.hlsl │ │ ├── UI_0x838B4310.ps_5_0.hlsl │ │ ├── UI_0xA3A17C66.ps_5_0.hlsl │ │ ├── UI_0xA505992D.ps_5_0.hlsl │ │ ├── UI_0xCACDD090.ps_5_0.hlsl │ │ ├── UI_0xDB333004.ps_5_0.hlsl │ │ ├── UI_0xE6D30E69.ps_5_0.hlsl │ │ ├── gamma_0xCBB34038.ps_5_0.hlsl │ │ ├── tonemap_0x037CC98B.ps_5_0.hlsl │ │ ├── tonemap_0x0664A14D.ps_5_0.hlsl │ │ ├── tonemap_0x075F0A3D.ps_5_0.hlsl │ │ ├── tonemap_0x0771DF62.ps_5_0.hlsl │ │ ├── tonemap_0x08BB0F87.ps_5_0.hlsl │ │ ├── tonemap_0x121503C6.ps_5_0.hlsl │ │ ├── tonemap_0x1541870E.ps_5_0.hlsl │ │ ├── tonemap_0x17C9E4CA.ps_5_0.hlsl │ │ ├── tonemap_0x19AFABC4.ps_5_0.hlsl │ │ ├── tonemap_0x1C67E14B.ps_5_0.hlsl │ │ ├── tonemap_0x207BE732.ps_5_0.hlsl │ │ ├── tonemap_0x230F6B5A.ps_5_0.hlsl │ │ ├── tonemap_0x231B3B55.ps_5_0.hlsl │ │ ├── tonemap_0x268326F2.ps_5_0.hlsl │ │ ├── tonemap_0x2744DD30.ps_5_0.hlsl │ │ ├── tonemap_0x275B517F.ps_5_0.hlsl │ │ ├── tonemap_0x27C1C43B.ps_5_0.hlsl │ │ ├── tonemap_0x291AE833.ps_5_0.hlsl │ │ ├── tonemap_0x2DAE9396.ps_5_0.hlsl │ │ ├── tonemap_0x2E26D10C.ps_5_0.hlsl │ │ ├── tonemap_0x304EBCD0.ps_5_0.hlsl │ │ ├── tonemap_0x306345AC.ps_5_0.hlsl │ │ ├── tonemap_0x31AE8CA6.ps_5_0.hlsl │ │ ├── tonemap_0x32F90855.ps_5_0.hlsl │ │ ├── tonemap_0x330C6A5B.ps_5_0.hlsl │ │ ├── tonemap_0x33D69819.ps_5_0.hlsl │ │ ├── tonemap_0x3776EC3D.ps_5_0.hlsl │ │ ├── tonemap_0x393CB504.ps_5_0.hlsl │ │ ├── tonemap_0x3A533147.ps_5_0.hlsl │ │ ├── tonemap_0x3B47B8DF.ps_5_0.hlsl │ │ ├── tonemap_0x3F4868D6.ps_5_0.hlsl │ │ ├── tonemap_0x40F026C4.ps_5_0.hlsl │ │ ├── tonemap_0x45995B20.ps_5_0.hlsl │ │ ├── tonemap_0x481CFC2F.ps_5_0.hlsl │ │ ├── tonemap_0x4B59870B.ps_5_0.hlsl │ │ ├── tonemap_0x4C3AFED2.ps_5_0.hlsl │ │ ├── tonemap_0x4C5412CF.ps_5_0.hlsl │ │ ├── tonemap_0x4D3E5269.ps_5_0.hlsl │ │ ├── tonemap_0x4F081694.ps_5_0.hlsl │ │ ├── tonemap_0x50BC4290.ps_5_0.hlsl │ │ ├── tonemap_0x518FA0B1.ps_5_0.hlsl │ │ ├── tonemap_0x52DC5990.ps_5_0.hlsl │ │ ├── tonemap_0x53421D31.ps_5_0.hlsl │ │ ├── tonemap_0x55B4E2D7.ps_5_0.hlsl │ │ ├── tonemap_0x55D4EA9A.ps_5_0.hlsl │ │ ├── tonemap_0x5B14FEDD.ps_5_0.hlsl │ │ ├── tonemap_0x5D4B2922.ps_5_0.hlsl │ │ ├── tonemap_0x5DB10347.ps_5_0.hlsl │ │ ├── tonemap_0x5DFBBB7C.ps_5_0.hlsl │ │ ├── tonemap_0x5F1C7813.ps_5_0.hlsl │ │ ├── tonemap_0x62E8D8A4.ps_5_0.hlsl │ │ ├── tonemap_0x64117C6A.ps_5_0.hlsl │ │ ├── tonemap_0x6697D0DC.ps_5_0.hlsl │ │ ├── tonemap_0x69D2640C.ps_5_0.hlsl │ │ ├── tonemap_0x6F206DC4.ps_5_0.hlsl │ │ ├── tonemap_0x724C6971.ps_5_0.hlsl │ │ ├── tonemap_0x72C9BB0F.ps_5_0.hlsl │ │ ├── tonemap_0x7A4B1159.ps_5_0.hlsl │ │ ├── tonemap_0x7AE71A38.ps_5_0.hlsl │ │ ├── tonemap_0x7CF50E75.ps_5_0.hlsl │ │ ├── tonemap_0x7F2DAD13.ps_5_0.hlsl │ │ ├── tonemap_0x83402A8B.ps_5_0.hlsl │ │ ├── tonemap_0x858AE537.ps_5_0.hlsl │ │ ├── tonemap_0x8667F96E.ps_5_0.hlsl │ │ ├── tonemap_0x88536DF4.ps_5_0.hlsl │ │ ├── tonemap_0x885495F4.ps_5_0.hlsl │ │ ├── tonemap_0x900E377D.ps_5_0.hlsl │ │ ├── tonemap_0x93FC2429.ps_5_0.hlsl │ │ ├── tonemap_0x946F6BD1.ps_5_0.hlsl │ │ ├── tonemap_0x99BB12A1.ps_5_0.hlsl │ │ ├── tonemap_0x9BB66660.ps_5_0.hlsl │ │ ├── tonemap_0x9CDD78C7.ps_5_0.hlsl │ │ ├── tonemap_0x9FBA649D.ps_5_0.hlsl │ │ ├── tonemap_0x9FE92A9D.ps_5_0.hlsl │ │ ├── tonemap_0xA351E23F.ps_5_0.hlsl │ │ ├── tonemap_0xA5A83291.ps_5_0.hlsl │ │ ├── tonemap_0xA81E83DB.ps_5_0.hlsl │ │ ├── tonemap_0xA8EC5856.ps_5_0.hlsl │ │ ├── tonemap_0xAB144A18.ps_5_0.hlsl │ │ ├── tonemap_0xB0BE7319.ps_5_0.hlsl │ │ ├── tonemap_0xB31BA649.ps_5_0.hlsl │ │ ├── tonemap_0xB568643C.ps_5_0.hlsl │ │ ├── tonemap_0xB7D0CEC3.ps_5_0.hlsl │ │ ├── tonemap_0xB7D80646.ps_5_0.hlsl │ │ ├── tonemap_0xBA1D4C3E.ps_5_0.hlsl │ │ ├── tonemap_0xBDF52042.ps_5_0.hlsl │ │ ├── tonemap_0xBE6C39BD.ps_5_0.hlsl │ │ ├── tonemap_0xBEE1E334.ps_5_0.hlsl │ │ ├── tonemap_0xC06D82E9.ps_5_0.hlsl │ │ ├── tonemap_0xC0B87AA2.ps_5_0.hlsl │ │ ├── tonemap_0xC1FF843E.ps_5_0.hlsl │ │ ├── tonemap_0xC4FE0520.ps_5_0.hlsl │ │ ├── tonemap_0xC570E91E.ps_5_0.hlsl │ │ ├── tonemap_0xC573DB4C.ps_5_0.hlsl │ │ ├── tonemap_0xCBBB1122.ps_5_0.hlsl │ │ ├── tonemap_0xCE924A58.ps_5_0.hlsl │ │ ├── tonemap_0xD093E1BF.ps_5_0.hlsl │ │ ├── tonemap_0xD76F33B7.ps_5_0.hlsl │ │ ├── tonemap_0xD8B52567.ps_5_0.hlsl │ │ ├── tonemap_0xDE6FB1B6.ps_5_0.hlsl │ │ ├── tonemap_0xE07F2B70.ps_5_0.hlsl │ │ ├── tonemap_0xE18B30E8.ps_5_0.hlsl │ │ ├── tonemap_0xE29265B1.ps_5_0.hlsl │ │ ├── tonemap_0xE6A0DEE7.ps_5_0.hlsl │ │ ├── tonemap_0xE797E530.ps_5_0.hlsl │ │ ├── tonemap_0xE82075EC.ps_5_0.hlsl │ │ ├── tonemap_0xEAC729D8.ps_5_0.hlsl │ │ ├── tonemap_0xEC673508.ps_5_0.hlsl │ │ ├── tonemap_0xED55AF5C.ps_5_0.hlsl │ │ ├── tonemap_0xF1B4BC09.ps_5_0.hlsl │ │ ├── tonemap_0xF3B1D674.ps_5_0.hlsl │ │ ├── tonemap_0xF47ECC50.ps_5_0.hlsl │ │ ├── tonemap_0xF4EA7010.ps_5_0.hlsl │ │ ├── tonemap_0xF69CD003.ps_5_0.hlsl │ │ ├── tonemap_0xF8AD6A63.ps_5_0.hlsl │ │ ├── tonemap_0xF8CE1E2A.ps_5_0.hlsl │ │ ├── tonemap_0xF99C69EC.ps_5_0.hlsl │ │ ├── tonemap_0xFB2559D5.ps_5_0.hlsl │ │ ├── tonemap_0xFD30895E.ps_5_0.hlsl │ │ └── videos_0x6756A138.ps_5_0.hlsl │ ├── shadowwarrior2013 │ │ ├── UIinteract_0x6720BADB.ps_4_0.hlsl │ │ ├── lensdirt_0xA36BCFE2.ps_4_0.hlsl │ │ ├── lensdirt_0xA4F44331.ps_4_0.hlsl │ │ ├── lensflare_0x3708D87A.ps_4_0.hlsl │ │ ├── something_0x4E5E174F.ps_4_0.hlsl │ │ ├── tonemap_0x023970B8.ps_4_0.hlsl │ │ ├── tonemap_0x09A94C41.ps_4_0.hlsl │ │ ├── tonemap_0x0A2E234C.ps_4_0.hlsl │ │ ├── tonemap_0x0DA22B92.ps_4_0.hlsl │ │ ├── tonemap_0x0F9652E8.ps_4_0.hlsl │ │ ├── tonemap_0x12AB1A81.ps_4_0.hlsl │ │ ├── tonemap_0x13DA4C6C.ps_4_0.hlsl │ │ ├── tonemap_0x16580EDF.ps_4_0.hlsl │ │ ├── tonemap_0x1716F0C8.ps_4_0.hlsl │ │ ├── tonemap_0x191D8275.ps_4_0.hlsl │ │ ├── tonemap_0x1CA8E9AB.ps_4_0.hlsl │ │ ├── tonemap_0x1CDD6909.ps_4_0.hlsl │ │ ├── tonemap_0x2E4DC470.ps_4_0.hlsl │ │ ├── tonemap_0x315506B7.ps_4_0.hlsl │ │ ├── tonemap_0x3381FB53.ps_4_0.hlsl │ │ ├── tonemap_0x3FBBDFB4.ps_4_0.hlsl │ │ ├── tonemap_0x4628A968.ps_4_0.hlsl │ │ ├── tonemap_0x46AC9E79.ps_4_0.hlsl │ │ ├── tonemap_0x4DEE3336.ps_4_0.hlsl │ │ ├── tonemap_0x52F84B72.ps_4_0.hlsl │ │ ├── tonemap_0x6211B8A7.ps_4_0.hlsl │ │ ├── tonemap_0x6D2ADAEE.ps_4_0.hlsl │ │ ├── tonemap_0x6E60A61D.ps_4_0.hlsl │ │ ├── tonemap_0x6F10C7B9.ps_4_0.hlsl │ │ ├── tonemap_0x7248153A.ps_4_0.hlsl │ │ ├── tonemap_0x72740BC1.ps_4_0.hlsl │ │ ├── tonemap_0x7353AA61.ps_4_0.hlsl │ │ ├── tonemap_0x8204D9A8.ps_4_0.hlsl │ │ ├── tonemap_0x856E9973.ps_4_0.hlsl │ │ ├── tonemap_0x879096E7.ps_4_0.hlsl │ │ ├── tonemap_0x9AB1D1C6.ps_4_0.hlsl │ │ ├── tonemap_0xA5638A17.ps_4_0.hlsl │ │ ├── tonemap_0xA63B5F1F.ps_4_0.hlsl │ │ ├── tonemap_0xA672A600.ps_4_0.hlsl │ │ ├── tonemap_0xAECCF67D.ps_4_0.hlsl │ │ ├── tonemap_0xB306DEC3.ps_4_0.hlsl │ │ ├── tonemap_0xC04679B1.ps_4_0.hlsl │ │ ├── tonemap_0xC9470745.ps_4_0.hlsl │ │ ├── tonemap_0xCC82A738.ps_4_0.hlsl │ │ ├── tonemap_0xCFE2B5D1.ps_4_0.hlsl │ │ ├── tonemap_0xD2F1B647.ps_4_0.hlsl │ │ ├── tonemap_0xEDF935AA.ps_4_0.hlsl │ │ ├── tonemap_0xF3FC4807.ps_4_0.hlsl │ │ ├── tonemap_0xF6CEE439.ps_4_0.hlsl │ │ ├── tonemap_0xF71CDD10.ps_4_0.hlsl │ │ └── videos_0x48B48F7B.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_0.hlsl ├── robocop │ ├── addon.cpp │ ├── common.hlsli │ ├── composite │ │ ├── composite.hlsli │ │ └── roguecity │ │ │ ├── BlitUItoHDRPS__0x43ECD608.ps_6_6.hlsl │ │ │ └── composite_HDR10_0x3B9C44FB.ps_6_6.hlsl │ ├── lutbuilders │ │ ├── CBuffers_LUTbuilder.hlsli │ │ ├── colorgradingLUT.hlsli │ │ ├── filmiclutbuilder.hlsli │ │ ├── filmtonemap.hlsli │ │ ├── lutbuildercommon.hlsli │ │ └── roguecity │ │ │ ├── lutbuilder2_0x90BBE81C.ps_6_6.hlsl │ │ │ ├── lutbuilder3_bakedLUT_0x269E94C1.ps_6_6.hlsl │ │ │ ├── lutbuilder4_bakedLUT_whitebalance_0x33247499.ps_6_6.hlsl │ │ │ ├── lutbuilder5_notm_0x15D739C6.ps_6_6.hlsl │ │ │ └── lutbuilder_0x5D760393.ps_6_6.hlsl │ ├── output │ │ └── roguecity │ │ │ ├── 0x34C2B2D4.ps_6_6.hlsl │ │ │ ├── 0x44906804.ps_6_6.hlsl │ │ │ ├── 0x581824BD.ps_6_6.hlsl │ │ │ ├── 0x59EDE6ED.ps_6_6.hlsl │ │ │ ├── 0xDB6651B1.ps_6_6.hlsl │ │ │ ├── 0xE4D5CD51.ps_6_6.hlsl │ │ │ ├── 0xE5CC6731.ps_6_6.hlsl │ │ │ ├── hdr_output_0x547F2FF2.ps_6_6.hlsl │ │ │ ├── hdr_output_0x97441D5E.ps_6_6.hlsl │ │ │ ├── hdr_output_0xF6F563D5.ps_6_6.hlsl │ │ │ └── hdr_output_nightvision_0x9F25CFCA.ps_6_6.hlsl │ ├── postfx │ │ ├── postfx.hlsli │ │ ├── postfx0_cracked_screen_0x0065CFA7.ps_6_6.hlsl │ │ ├── postfx0_scanlines_0xED47240B.ps_6_6.hlsl │ │ ├── postfx1_0x0E8178B3.ps_6_6.hlsl │ │ ├── postfx2_0x6CCCD006.ps_6_6.hlsl │ │ └── postfx3_0x9E65A9B5.ps_6_6.hlsl │ ├── shared.h │ └── startupvideos │ │ ├── startup.hlsli │ │ └── startupvideo_0xA9AD12DF.ps_6_6.hlsl ├── scblacklist │ ├── addon.cpp │ ├── colorgrade_0x03DBB3FD.ps_5_0.hlsl │ ├── common.hlsl │ ├── final_0x1E767A42.ps_5_0.hlsl │ ├── lens_flare_0xB615F379.ps_5_0.hlsl │ ├── shared.h │ └── sonar_0x81A1C030.ps_5_0.hlsl ├── seaofstars │ ├── addon.cpp │ ├── final_0x72B31CDE.ps_4_0.hlsl │ ├── lutbuilder_0x67758842.ps_4_0.hlsl │ ├── lutbuilder_new_0x77850945.ps_4_0.hlsl │ ├── shared.h │ ├── tonemapper_0x552A4A60.ps_4_0.hlsl │ ├── tonemapper_new2_0xC1637E4E.ps_4_0.hlsl │ └── tonemapper_new_0xB646820B.ps_4_0.hlsl ├── seaofthieves │ ├── addon.cpp │ ├── final_0x84B99833.ps_5_0.hlsl │ ├── seaofthieves.h │ └── tonemapper_0xE41360A3.ps_5_0.hlsl ├── shadowofwar │ ├── addon.cpp │ ├── bloom_0xA35C971A.ps_5_0.hlsl │ ├── composite_0x68EABB8D.ps_5_0.hlsl │ ├── game_final_0xA4592384.ps_5_0.hlsl │ ├── photo_mode_0xC2665219.ps_5_0.hlsl │ ├── shared.h │ └── tonemap.hlsli ├── shadowsawakening │ ├── LutBuilder_0x6A8BFC0E.ps_5_0.hlsl │ ├── UIcamera_0xC47E2D5B.ps_4_0.hlsl │ ├── UIdefault2_0x31102333.ps_4_0.hlsl │ ├── UIdefault_0x85463CFA.ps_4_0.hlsl │ ├── UIminimap_0x4E43372C.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── light_0xE911C9D2.ps_4_0.hlsl │ ├── postfx2_0x0D4651C9.ps_5_0.hlsl │ ├── postfx3_0x0299214E.ps_5_0.hlsl │ ├── postfx_0x244A72BB.ps_5_0.hlsl │ ├── shared.h │ ├── something2_0xD4C8CCF7.ps_4_0.hlsl │ ├── something3_0x1E4FBFCE.ps_4_0.hlsl │ ├── something_0x9B5F961E.ps_4_0.hlsl │ ├── uberpostTM_0xFE41EA26.ps_4_0.hlsl │ ├── uberpost_0xF9B0D779.ps_4_0.hlsl │ ├── videosingame_0xF804335C.ps_4_0.hlsl │ └── videosopening_0x8A6BCB4C.ps_4_0.hlsl ├── shadowtombraider │ ├── ACESLUT_0x2F759B36.cs_5_x.hlsl │ ├── addon.cpp │ ├── bloom_0x02F23B46.cs_5_x.hlsl │ ├── common.hlsl │ ├── hdr_gamma_0x5D10D1A2.ps_5_x.hlsl │ ├── lensflare │ │ ├── lens_flare_0x828F116D.ps_5_x.hlsl │ │ └── lens_flare_0x8697E4DE.ps_5_x.hlsl │ ├── lutshaders │ │ ├── 0x36A04CB8.cs_5_x.hlsl │ │ ├── 0x725644C4.cs_5_x.hlsl │ │ ├── 0x72D58C75.cs_5_x.hlsl │ │ ├── 0x90C37605.cs_5_x.hlsl │ │ ├── 0xABDAFDB8.cs_5_x.hlsl │ │ └── 0xFF27B467.cs_5_x.hlsl │ ├── shared.h │ ├── tonemap_aces_hdr_0xDB8538C1.ps_5_x.hlsl │ ├── tonemap_lut_hdr_0x0FBDBDA4.ps_5_x.hlsl │ └── uishaders │ │ ├── 0x1AA4CCAC.ps_5_x.hlsl │ │ ├── 0x332A318B.ps_5_x.hlsl │ │ ├── 0x3AA14258.ps_5_x.hlsl │ │ ├── 0x48FA9C2B.ps_5_x.hlsl │ │ ├── 0x6F8605E5.ps_5_x.hlsl │ │ ├── 0x81B46BE8.ps_5_x.hlsl │ │ ├── 0x9BC94FD8.ps_5_x.hlsl │ │ ├── 0xA302A797.ps_5_x.hlsl │ │ ├── 0xA5AAFE7A.ps_5_x.hlsl │ │ ├── 0xD7AEE3C3.ps_5_x.hlsl │ │ ├── 0xD7BE7204.ps_5_x.hlsl │ │ └── 0xF374711E.ps_5_x.hlsl ├── shinobiaov │ ├── addon.cpp │ ├── common.hlsl │ ├── fire_0x5BF1E088.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── uber_0x15032A70.ps_4_0.hlsl │ ├── uber_0x6F30CACB.ps_4_0.hlsl │ ├── uber_0x82FF3964.ps_4_0.hlsl │ ├── uber_0x8B3A2802.ps_4_0.hlsl │ ├── uber_0x8C10BEAF.ps_4_0.hlsl │ ├── uber_0xB4FCC459.ps_4_0.hlsl │ ├── uber_0xBDB19C13.ps_4_0.hlsl │ └── uber_0xE832FE2B.ps_4_0.hlsl ├── silenthill2remake │ ├── addon.cpp │ ├── common.hlsli │ ├── composite │ │ ├── 0x43713652.ps_6_6.hlsl │ │ ├── 0x82F211C7.ps_6_6.hlsl │ │ ├── 0x95CC270F.ps_6_6.hlsl │ │ ├── 0xBF32ABFA.ps_6_6.hlsl │ │ ├── BlitUIToHDRPS_0x4B7B660D.ps_6_6.hlsl │ │ ├── CompositeUIPS_0x394B5831.ps_6_6.hlsl │ │ └── composite.hlsli │ ├── lutbuilder │ │ ├── CBuffers │ │ │ └── CBuffers_LUTbuilder.hlsli │ │ ├── colorcorrection.hlsli │ │ ├── filmiclutbuilder.hlsli │ │ ├── filmtonemap.hlsli │ │ ├── lutbuilder_0xBBB5CA7B.ps_6_6.hlsl │ │ ├── lutbuilder_1-lut_0x99145AE9.cs_6_6.hlsl │ │ ├── lutbuilder_2-luts_0x309584F8.cs_6_6.hlsl │ │ ├── lutbuilder_3-luts_0xFDFD3CB7.cs_6_6.hlsl │ │ ├── lutbuilder_4-luts_0x1E7B589F.cs_6_6.hlsl │ │ ├── lutbuilder_main_0xDA6D5332.cs_6_6.hlsl │ │ ├── lutbuilder_whitebalance_0x063CCF18.cs_6_6.hlsl │ │ ├── lutbuilder_whitebalance_0x9DF2DDD4.ps_6_6.hlsl │ │ ├── lutbuilder_whitebalance_1-lut_0x421733C7.cs_6_6.hlsl │ │ ├── lutbuilder_whitebalance_2-luts_0x72A44486.cs_6_6.hlsl │ │ ├── lutbuilder_whitebalance_3-luts_0x77178C51.cs_6_6.hlsl │ │ ├── lutbuilder_whitebalance_4-luts_0x865E53FC.cs_6_6.hlsl │ │ ├── lutbuildercommon.hlsli │ │ └── lutsampling.hlsli │ └── shared.h ├── silenthillf │ ├── addon.cpp │ ├── common.hlsli │ ├── composite │ │ ├── BlitUIToHDRPS_0x8DD3A88B.ps_6_6.hlsl │ │ ├── composite.hlsli │ │ ├── composite_hdr10_0x92D4B659.ps_6_6.hlsl │ │ └── lilium_rcas.hlsli │ ├── lutbuilder │ │ ├── CBuffers │ │ │ └── CBuffers_LUTbuilder.hlsli │ │ ├── filmiclutbuilder.hlsli │ │ ├── filmtonemap.hlsli │ │ ├── lutbuilder_2-luts-whitebalance_0xF87C0AD7.ps_6_6.hlsl │ │ ├── lutbuilder_2-luts_0x0654FE73.ps_6_6.hlsl │ │ ├── lutbuilder_aces-only_0xCBCF8905.ps_6_6.hlsl │ │ ├── lutbuilder_hdr-main_0x08B5389E.ps_6_6.hlsl │ │ ├── lutbuilder_lut-whitebalance_0x9D93A8D5.ps_6_6.hlsl │ │ ├── lutbuilder_lut_0x4A0DBF57.ps_6_6.hlsl │ │ ├── lutbuilder_no-white-balance_0x773A9497.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsli │ ├── output │ │ ├── 0x06AA3F4A.ps_6_6.hlsl │ │ ├── 0x105548CA.ps_6_6.hlsl │ │ ├── 0x38CFC62B.ps_6_6.hlsl │ │ ├── 0x3E1BB6C2.ps_6_6.hlsl │ │ ├── 0x4038B91F.ps_6_6.hlsl │ │ ├── 0x4857D989.ps_6_6.hlsl │ │ ├── 0x53590DD2.ps_6_6.hlsl │ │ ├── 0x588CCFE6.ps_6_6.hlsl │ │ ├── 0x677CD5B1.ps_6_6.hlsl │ │ ├── 0x73F9849E.ps_6_6.hlsl │ │ ├── 0x9AAF5641.ps_6_6.hlsl │ │ ├── 0xB75D8FEB.ps_6_6.hlsl │ │ ├── 0xB8C42E1E.ps_6_6.hlsl │ │ ├── 0xBF304D2A.ps_6_6.hlsl │ │ ├── 0xCBEF36B5.ps_6_6.hlsl │ │ ├── 0xF00EA34F.ps_6_6.hlsl │ │ ├── 0xF1C9DBC1.ps_6_6.hlsl │ │ └── output.hlsli │ ├── shared.h │ └── swapchainproxy.hlsli ├── sleepingdogs │ ├── 00_final_0x7BD04F3D.ps_4_0.hlsl │ ├── addon.cpp │ └── shared.h ├── sleepingdogsde │ ├── 00_output_0x7DF69EF0.ps_4_0.hlsl │ ├── addon.cpp │ ├── shared.h │ └── tonemapper_0x67843125.ps_4_0.hlsl ├── slimerancher2 │ ├── addon.cpp │ ├── common.hlsl │ ├── finalpass0_0x02AB22C6.ps_5_0.hlsl │ ├── finalpass1_0x9A3E0141.ps_5_0.hlsl │ ├── proxy_0x20133A8B.ps_4_0.hlsl │ ├── shared.h │ └── splat_0xC04C9047.ps_5_0.hlsl ├── smashbros-ultimate │ ├── addon.cpp │ ├── bloom │ │ ├── blur_0x6F8D57E9.frag.slang │ │ ├── blur_0xCC16E269.frag.slang │ │ ├── blur_0xD09BE0D4.frag.slang │ │ ├── blur_0xFDF58568.frag.slang │ │ ├── composite_0x24DE6815.frag.slang │ │ ├── mask_0x26FB90CB.frag.slang │ │ ├── postprocess_common.slang │ │ ├── upscale_0x574C469C.frag.slang │ │ └── upscale_0xA6888F9A.frag.slang │ ├── output_0xF3C7B934.frag.slang │ ├── shared.h │ ├── smaa_0xBDDC863F.comp.slang │ └── tonemap │ │ ├── common.slang │ │ ├── tonemap_0x0E55B73E.frag.slang │ │ ├── tonemap_0x15E86781.frag.slang │ │ ├── tonemap_0x184EDCF0.frag.slang │ │ ├── tonemap_0x1CB1BC38.frag.slang │ │ ├── tonemap_0x2F28B6FD.frag.slang │ │ ├── tonemap_0x2FDA3677.frag.slang │ │ ├── tonemap_0x49A57476.frag.slang │ │ ├── tonemap_0x5202C090.frag.slang │ │ ├── tonemap_0x5A9CBEC5.frag.slang │ │ ├── tonemap_0x62A90A5F.frag.slang │ │ ├── tonemap_0x65EF2115.frag.slang │ │ ├── tonemap_0x6663BDB0.frag.slang │ │ ├── tonemap_0x7525D6CA.frag.slang │ │ ├── tonemap_0x7BFE0326.frag.slang │ │ ├── tonemap_0x7FE28868.frag.slang │ │ ├── tonemap_0x85D1DB2F.frag.slang │ │ ├── tonemap_0x8D399572.frag.slang │ │ ├── tonemap_0xA0D2AFC8.frag.slang │ │ ├── tonemap_0xA376C572.frag.slang │ │ ├── tonemap_0xA63F36B1.frag.slang │ │ ├── tonemap_0xA79248F1.frag.slang │ │ ├── tonemap_0xA8DC96A8.frag.slang │ │ ├── tonemap_0xB18FD192.frag.slang │ │ ├── tonemap_0xB3B47AE5.frag.slang │ │ ├── tonemap_0xC1FB811D.frag.slang │ │ ├── tonemap_0xCC8CEB7C.frag.slang │ │ └── tonemap_0xF26A2193.frag.slang ├── sniperelite4 │ ├── UI_dx11 │ │ ├── UI_0x0D8FA7C7.ps_5_x.hlsl │ │ ├── UI_0x2C60EDAA.ps_5_x.hlsl │ │ ├── UI_0x78E0B0AD.ps_5_x.hlsl │ │ ├── UI_0x9B76964A.ps_5_x.hlsl │ │ └── UI_0xE0E2384E.ps_5_x.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── gamma_dx11_0x2ABCCE53.ps_5_x.hlsl │ ├── gamma_dx12_0x30601FE9.ps_5_x.hlsl │ ├── lut_dx11_0x018FD5BE.ps_5_x.hlsl │ ├── lut_dx12_0x4234CA70.ps_5_x.hlsl │ ├── lut_dx12_0x6CA37CBC.ps_5_x.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ └── tonemap_dx11_0x8B6E31BD.ps_5_x.hlsl ├── sonicgenerations │ ├── 00_final_0xFE9E931E.ps_5_0.hlsl │ ├── 03_composite_0x4F86C994.ps_5_0.hlsl │ ├── 04_dof1_0xE3AA2186.ps_5_0.hlsl │ ├── 04_dof2_0x869D0801.ps_5_0.hlsl │ ├── addon.cpp │ ├── shared.h │ ├── xx_tonemap_game_0x93F8E2A0.ps_5_0.hlsl │ └── xx_tonemap_menu_0x42672A82.ps_5_0.hlsl ├── spacemarine2 │ ├── DOF │ │ ├── dof_0x0A4344AF.ps_6_0.hlsl │ │ ├── dof_0x1F60EC02.ps_6_0.hlsl │ │ ├── dof_0x1FA67B57.ps_6_0.hlsl │ │ ├── dof_0x5B62AA56.ps_6_0.hlsl │ │ └── dof_0xA18A5613.ps_6_0.hlsl │ ├── UI │ │ ├── 0x7056B504.ps_6_0.hlsl │ │ ├── 0x7A973CE4.ps_6_0.hlsl │ │ ├── 0x7EE72E6A.ps_6_0.hlsl │ │ └── 0x86ACEECC.ps_6_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── deatheffect_0x171A62C9.ps_6_0.hlsl │ ├── experiment │ │ ├── 0x1A1149D0.cs_6_0.hlsl │ │ ├── 0x1FFCA23B.ps_6_0.hlsl │ │ ├── 0x38FFBF0A.ps_6_0.hlsl │ │ ├── 0xCF7BBECC.cs_6_0.hlsl │ │ └── bloom_0x38DF3709.ps_6_0.hlsl │ ├── filmgrain_0xB90F6101.ps_6_0.hlsl │ ├── lutbuilder_0xDABE398B.cs_6_0.hlsl │ ├── output_0x3B3FC437.ps_6_0.hlsl │ ├── output_0xAB7215D2.ps_6_0.hlsl │ ├── output_0xC6FBD9A4.ps_6_0.hlsl │ ├── output_0xD1C5DCB9.ps_6_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_6_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_6_0.hlsl ├── spark3 │ ├── addon.cpp │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uber2_0xFE41EA26.ps_4_0.hlsl │ └── uber_0xF9B0D779.ps_4_0.hlsl ├── specopstheline │ ├── addon.cpp │ ├── common.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── tonemap_0x189CC3A0.ps_3_0.hlsl │ ├── ui1_0xF80D67B1.ps_3_0.hlsl │ ├── ui2_0x33730710.ps_3_0.hlsl │ ├── ui3_0x608E5532.ps_3_0.hlsl │ └── ui_final_0xAF5AC635.ps_3_0.hlsl ├── spiderman_2018_miles │ ├── CS_ToneMapBloomFilmGrainSharpen_MMand2018_cAb_off_0xECBD5D23.cs_6_6.hlsl │ ├── CS_ToneMapBloomFilmGrain_MMand2018_0x26B88F98.cs_6_6.hlsl │ ├── CS_ToneMapUber_MMand2018_0xB5DBD65C.cs_6_6.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── framegen │ │ └── PS_UiMerge_MMand2018_0x55D93252.ps_6_6.hlsl │ ├── include │ │ └── ToneMapCB.hlsl │ └── shared.h ├── stalker2 │ ├── addon.cpp │ ├── common.hlsl │ ├── crouch_vignette_0xFAD704A3.ps_6_6.hlsl │ ├── final00_0xA7EFB8C2.ps_6_6.hlsl │ ├── lutbuilder_0x6CFBD4C0.ps_6_6.hlsl │ ├── lutbuilder_0xB6CA5FD9.ps_6_6.hlsl │ ├── lutbuilder_0xBAA27141.ps_6_6.hlsl │ ├── output_0x20685247.ps_6_6.hlsl │ ├── output_0x2DAD4682.ps_6_6.hlsl │ ├── output_0x39EF727B.ps_6_6.hlsl │ ├── output_0x4D3C673E.ps_6_6.hlsl │ ├── output_0xECD0D71A.ps_6_6.hlsl │ ├── output_mainmenu_0xC3FA1951.ps_6_6.hlsl │ ├── postprocess02_0xED411D4E.ps_6_6.hlsl │ ├── radiation01_0x5590F787.ps_6_6.hlsl │ ├── shared.h │ └── vignette02_0x04532088.ps_6_6.hlsl ├── starfield │ ├── addon.cpp │ ├── cas │ │ └── cas_0x91461C11.cs_6_6.hlsl │ ├── common.hlsl │ ├── filmgrain │ │ ├── 03_film_grain_0xAC5319C5.ps_6_6.hlsl │ │ └── film_grain_0xFBF10C4C.ps_6_6.hlsl │ ├── movie │ │ ├── 06_movie_0x32580F53.ps_6_6.hlsl │ │ └── movie_0xA55179DD.ps_6_6.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_6_6.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_6_6.hlsl │ └── tonemapper │ │ ├── tonemapper_0x7051F23E.ps_6_6.hlsl │ │ └── tonemapper_old_0xD546E059.ps_6_6.hlsl ├── streetfighter6 │ ├── CAS_0x1E6CCBAF.cs_6_6.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0xFD9D7A88.ps_6_6.hlsl │ ├── lilium_cas.hlsl │ ├── postprocess01_0x4E55C17E.ps_6_6.hlsl │ ├── postprocess02_0xC58C0B1E.ps_6_6.hlsl │ ├── postprocess03_0x53421BFF.ps_6_6.hlsl │ ├── postprocess04_0xD01C226D.ps_6_6.hlsl │ ├── postprocess05_0x063AE9EF.ps_6_6.hlsl │ └── shared.h ├── sunsetoverdrive │ ├── addon.cpp │ ├── common.hlsl │ ├── copy_0xF7085ACD.ps_5_0.hlsl │ ├── effect_0x2EB348CF.ps_5_0.hlsl │ ├── effect_0x6EB0D51C.ps_5_0.hlsl │ ├── effect_0x8EACA7B7.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── tonemap_0x2A6A872A.ps_5_0.hlsl │ ├── tonemap_0x86EE37B6.ps_5_0.hlsl │ ├── tonemap_0x902D30F9.ps_5_0.hlsl │ ├── tonemap_0xB2BBC089.ps_5_0.hlsl │ ├── tonemap_0xC291251A.ps_5_0.hlsl │ ├── tonemap_0xD6B7231C.ps_5_0.hlsl │ ├── tonemap_0xE3E7DD84.ps_5_0.hlsl │ ├── tonemap_0xEE7FB6CC.ps_5_0.hlsl │ └── videos_0x80649033.ps_5_0.hlsl ├── tacticalbreachwizards │ ├── DICE.hlsl │ ├── LUT3DBakerNoTonemap_0x995B320A.cs_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── glow_composite_0xD863ED6A.ps_4_0.hlsl │ ├── output_0xC8C2F1A0.ps_4_0.hlsl │ ├── output_0xEB23B0ED.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_4_0.hlsl ├── talesofgracesf │ ├── addon.cpp │ ├── lutbuilder_0x13EEF169.ps_4_0.hlsl │ ├── output_0x1D4D40B0.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ └── ui_0xE7C15BA6.ps_4_0.hlsl ├── tekken8 │ ├── addon.cpp │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsl │ │ ├── lutbuilder_0x15D739C6.ps_6_6.hlsl │ │ ├── lutbuilder_0x3028EBE7.ps_6_6.hlsl │ │ ├── lutbuilder_0x4F3FCE76.ps_6_6.hlsl │ │ ├── lutbuilder_0x94D26E3A.ps_6_6.hlsl │ │ ├── lutbuilder_0xB530B36A.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsl │ ├── misc │ │ └── herolight_0xE6193B1A.ps_6_6.hlsl │ ├── outputs │ │ ├── composite.hlsl │ │ └── composite_hdr_0x3B9C44FB.ps_6_6.hlsl │ └── shared.h ├── tempopo │ ├── addon.cpp │ ├── lutbuilder_0x13EEF169.ps_4_0.hlsl │ ├── output_0x4C2F0193.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── thehundredline │ ├── addon.cpp │ ├── final_0xC0858664.ps_5_0.hlsl │ ├── output_0x13D78644.ps_5_0.hlsl │ ├── shared.h │ ├── sharpening_0xFFD4E76E.ps_5_0.hlsl │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ ├── ui_0x25CC5A3A.ps_5_0.hlsl │ └── video_0xA4311A98.ps_5_0.hlsl ├── thesurge │ ├── UI_0x75061D6A.ps_5_0.hlsl │ ├── UI_0x9E859B1F.ps_5_0.hlsl │ ├── UI_0xB24F9988.ps_5_0.hlsl │ ├── UI_0xEC416938.ps_5_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── filmgrain_0x67259E12.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_5_0.hlsl │ ├── tonemap_0xCBADAE82.ps_5_0.hlsl │ └── videos_0xDD4A2D9A.ps_5_0.hlsl ├── thetownoflight │ ├── X_Final_0xFFFFFFFD.vs_5_0.hlsl │ ├── X_Final_0xFFFFFFFE.ps_5_0.hlsl │ ├── addon.cpp │ ├── colorGradingAndFog_0x9D6291BC.ps_4_0.hlsl │ ├── common.hlsl │ ├── fade_0x08C91A0A.ps_4_0.hlsl │ ├── grungeFilter_0xE61B6A3B.ps_4_0.hlsl │ ├── postProcessAndGammaAdjustment_0xB103EAA6.ps_4_0.hlsl │ ├── sepia_0x3F4881E9.ps_4_0.hlsl │ ├── shared.h │ ├── ui_0x1FB08827.ps_4_0.hlsl │ └── vignette_0x7455FB8A.ps_4_0.hlsl ├── thewitcher3 │ ├── 0x572AAB77.ps_6_3.hlsl │ ├── 0x7BB02B41.ps_6_3.hlsl │ ├── addon.cpp │ ├── bloom_start_0xE1BC4DB3.ps_6_3.hlsl │ ├── common.hlsl │ ├── depth_blur_0x0C19D45C.ps_6_3.hlsl │ ├── depth_blur_start_0xB4E7B7BF.ps_6_3.hlsl │ ├── final_0x2B28CC28.ps_6_3.hlsl │ ├── final_framegen_0xA4AF2926.ps_6_3.hlsl │ ├── final_framegen_sdr_0x190256CF.ps_6_3.hlsl │ ├── final_sdr_0x05E81E49.ps_6_3.hlsl │ ├── grading1_0x5BCE9299.ps_6_3.hlsl │ ├── grading2_0x77602691.ps_6_3.hlsl │ ├── grading3_0x7E66860C.ps_6_3.hlsl │ ├── lensdirt_bloom_0xB2EC52E3.ps_6_3.hlsl │ ├── lilium_rcas.hlsl │ ├── mystery_0xE4648BB4.ps_6_3.hlsl │ ├── nis_0x9AA4B8F2.cs_6_3.hlsl │ ├── photomode_0xE43D65AA.ps_6_3.hlsl │ ├── postprocessing_0xEACF2F09.ps_6_3.hlsl │ ├── shared.h │ ├── sunshafts_1080_0x43343053.ps_6_3.hlsl │ ├── sunshafts_1440_0x74D83106.ps_6_3.hlsl │ ├── sunshafts_2160_0xC234BA8C.ps_6_3.hlsl │ ├── sunshafts_start_0x0B6D0F0A.ps_6_3.hlsl │ ├── tonemap1_0x5D5B4871.ps_6_3.hlsl │ ├── tonemap2_0x957DD682.ps_6_3.hlsl │ ├── uncharted2.hlsl │ └── video_0x85DE755E.ps_6_3.hlsl ├── thewitness │ ├── addon.cpp │ ├── game_render_0x5F92E474.ps_4_0.hlsl │ ├── lut_0x415DFB3A.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_5_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_5_0.hlsl ├── tombraider2013 │ ├── a0_0x100EC9DC.ps_4_0.hlsl │ ├── a10_0xEA376B10.ps_4_0.hlsl │ ├── a1_0x36C11C54.ps_4_0.hlsl │ ├── a2_0x4B8C2D9F.ps_4_0.hlsl │ ├── a3_0x55A5D3AF.ps_4_0.hlsl │ ├── a4_0xA5E5BCB4.ps_4_0.hlsl │ ├── a5_0xB4B7BCEB.ps_4_0.hlsl │ ├── a6_0xB6DD6E36.ps_4_0.hlsl │ ├── a7_0xCDD02564.ps_4_0.hlsl │ ├── a8_0xDA1F0E89.ps_4_0.hlsl │ ├── a9_0xE3C8625C.cs_5_0.hlsl │ ├── addon.cpp │ ├── bloom_0x36211827.ps_4_0.hlsl │ ├── dof_0x88472F82.cs_5_0.hlsl │ ├── downsample1_0xA8D8F5E7.ps_4_0.hlsl │ ├── downsample2_0x3B23A71A.ps_4_0.hlsl │ ├── downsample3_0x48180F61.ps_4_0.hlsl │ ├── fmv_0xD598975C.ps_4_0.hlsl │ ├── fog_0x4E5704D4.ps_4_0.hlsl │ ├── lens_flare_0x3F2C7CB9.ps_4_0.hlsl │ ├── object_dof_0xC8BBED05.ps_4_0.hlsl │ ├── reflection_0x19369325.ps_4_0.hlsl │ ├── reinhard_0xB5841644.ps_4_0.hlsl │ ├── sampling_0xF31E4052.ps_4_0.hlsl │ ├── scanlines2_0x0D982391.ps_4_0.hlsl │ ├── scanlines_0x72F0AA7C.ps_4_0.hlsl │ ├── shared.h │ ├── survival_0xBB85386D.ps_4_0.hlsl │ ├── upscale2_0x8B7F1649.ps_4_0.hlsl │ ├── upscale_0x17AC3D94.ps_4_0.hlsl │ ├── vignette_noise_0x48648857.ps_4_0.hlsl │ └── waterdrop_0x32CB17F7.ps_4_0.hlsl ├── tombraider2013de │ ├── a1_0x6F10C641.ps_4_1.hlsl │ ├── a2_0x74A84371.ps_4_1.hlsl │ ├── addon.cpp │ ├── bloom_0x52EFC25A.ps_4_1.hlsl │ ├── composite_0xA132B2FE.ps_4_1.hlsl │ ├── downsample1_0x03584A3B.ps_4_1.hlsl │ ├── downsample2_0x7ED6478E.ps_4_1.hlsl │ ├── downsample3_0x30E39CFC.ps_4_1.hlsl │ ├── downsample4_0xCEE6D90A.ps_4_1.hlsl │ ├── downsample5_0x61558F02.ps_4_1.hlsl │ ├── downsample6_0x7C0F5D9A.ps_4_1.hlsl │ ├── fmv_0x60597EF5.ps_4_0.hlsl │ ├── fog_0x0E8451C8.ps_4_1.hlsl │ ├── glow_0xBDA9CB2D.ps_4_1.hlsl │ ├── lens_flare_0x80816448.ps_4_1.hlsl │ ├── lut_0xA2AFAA0A.ps_4_1.hlsl │ ├── object_dof_0xBB7DAA23.ps_4_1.hlsl │ ├── reinhard_0xC7A14DDD.ps_4_1.hlsl │ ├── sampling2_0x9F11116A.cs_5_0.hlsl │ ├── sampling_0xB1B0D9F3.ps_4_0.hlsl │ ├── scanlines_0x8596D63B.ps_4_0.hlsl │ ├── shared.h │ ├── survival_0x73B32980.ps_4_1.hlsl │ ├── unknown_fog_0x95CBCA93.ps_4_1.hlsl │ ├── upscale2_0x9D59861E.ps_4_1.hlsl │ ├── upscale_0xD744BED8.ps_4_0.hlsl │ └── vignette_0x3132F3CF.ps_4_1.hlsl ├── trackmania │ ├── addon.cpp │ ├── bloom_0xADC96AE9.ps_5_0.hlsl │ ├── common.hlsl │ ├── finalpost_0xE8F6477D.ps_5_0.hlsl │ ├── grading_0x20E947AC.ps_5_0.hlsl │ ├── intermediate_0xB456B938.ps_5_0.hlsl │ ├── motionblur_0x7C4E2304.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ └── tonemapping_0x9AD01C26.ps_5_0.hlsl ├── tunic │ ├── addon.cpp │ ├── glow_0x4AC5CC39.ps_4_0.hlsl │ ├── lutsample2_0xAA66A0B6.ps_4_0.hlsl │ ├── lutsample_0xEEFE9737.ps_4_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ └── swap_chain_proxy_vertex_shader.vs_4_0.hlsl ├── unchartedlotc │ ├── addon.cpp │ ├── final_0x545B3706.ps_6_0.hlsl │ └── shared.h ├── unrealengine │ ├── addon.cpp │ ├── common.hlsl │ ├── games │ │ ├── asterigos │ │ │ ├── overlay_0x1564B757.ps_5_0.hlsl │ │ │ └── overlay_0x7170613F.ps_5_0.hlsl │ │ ├── banishers │ │ │ └── grading_0x82B600FF.ps_5_x.hlsl │ │ ├── borderlands3 │ │ │ └── CAS_0x87E36EDB.ps_5_0.hlsl │ │ ├── chorus │ │ │ └── overlay_0x5011999C.ps_5_0.hlsl │ │ ├── crisiscoreff7reunion │ │ │ └── fmv_0xAC791084.ps_5_0.hlsl │ │ ├── gtasanandreas │ │ │ └── lutbuilder_0xB864B3B8.ps_5_x.hlsl │ │ ├── kh3 │ │ │ ├── lutbuilder_0x00E9C5FE.ps_5_x.hlsl │ │ │ └── lutbuilder_0xE9343033.ps_5_x.hlsl │ │ ├── marvelrivals │ │ │ └── postprocess_0x76E751B9.ps_6_6.hlsl │ │ ├── mgsdelta │ │ │ └── call_overlay_0x0CBA1EC6.ps_6_6.hlsl │ │ ├── p3r │ │ │ ├── godray_0xCB9976C8.ps_6_0.hlsl │ │ │ └── mainmenu_text_0xBFE48347.ps_6_0.hlsl │ │ ├── raincode │ │ │ └── hatching_0x388FF776.ps_5_x.hlsl │ │ ├── talesofarise │ │ │ ├── output_0x8D5C5C52.ps_5_0.hlsl │ │ │ ├── output_0xC89B89AF.ps_5_0.hlsl │ │ │ ├── output_0xDCFDF14D.ps_5_0.hlsl │ │ │ └── output_cutscene_0x7C1D6772.ps_5_0.hlsl │ │ ├── theoccupation │ │ │ └── overlay_0xD658638D.ps_5_0.hlsl │ │ ├── thequarry │ │ │ └── crt_0x875081C9.cs_5_x.hlsl │ │ ├── thps3+4 │ │ │ ├── lutbuilder_0xBF5C676F.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xE73B3FFD.ps_5_x.hlsl │ │ │ └── lutbuilder_0xEE1D0151.ps_5_x.hlsl │ │ └── wutheringwaves │ │ │ ├── output_0x1D1C27C0.ps_5_x.hlsl │ │ │ ├── output_0x271E2688.ps_5_x.hlsl │ │ │ ├── output_0x3B22B2CC.ps_5_x.hlsl │ │ │ ├── output_0x7A453AD3.ps_5_x.hlsl │ │ │ ├── output_0xB022C611.ps_5_x.hlsl │ │ │ └── output_0xF57838BC.ps_5_x.hlsl │ ├── lutbuilders │ │ ├── sm5 │ │ │ ├── lutbuilder_0x02225B55.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x03F2231B.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x0A9793C1.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x0C26F82E.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x0D941593.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x0D9A5023.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x0F17B0B3.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x11ACA4BD.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x17F8F0F4.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x18639D8F.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x1BA80C5E.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x1DF6036B.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x1F1D6E66.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x20EAC9B6.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x2179DAD2.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x22A4BD4E.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x235F4AB7.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x2569985B.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x2A94C68A.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x2AFC7CD9.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x2F460105.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x3040FD90.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x30AD540E.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x31FE4421.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x32A7B369.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x357C5DF0.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x36E3A438.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x3904DD94.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x3A88B087.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x40A581ED.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x425022C1.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x427C7627.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x45C3C09C.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x472375F6.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x4AD43318.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x4C452753.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x4E0CDC69.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x4E6F963D.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x4EB8A6FF.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x4F43F0BB.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x557A2773.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x55D043F9.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x5788EF5C.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x5BD6A5C2.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x5CAE0013.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x5EBB94E2.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x60952A02.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x61C2EA30.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x61F067B4.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x642ABB11.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x6444285D.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x6757E671.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x6B0EC7A1.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x6B280E0E.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x6CA6068F.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x6E6FC244.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x6FE13A72.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x73B2BA54.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x73DE734D.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x7570E7B1.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x80CD76B6.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x85DEEF21.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x8619B6A7.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x86F9308B.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x876F0F03.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x8CD01256.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x8D3D2FA0.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x9081A2D8.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x94D68746.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x95A3F50E.cs_5_x.hlsl │ │ │ ├── lutbuilder_0x97BAC8AF.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x9A219764.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x9E045D70.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xA918F0C8.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xB1614732.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xB4F3140C.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xB9541992.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xB972BF8F.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xBEB7EB31.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xC130BE2D.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xC1BCC6B5.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xC2A711CC.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xC32C8BEA.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xC3405B64.cs_5_x.hlsl │ │ │ ├── lutbuilder_0xC3532D38.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xCA383248.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xCA80A1BE.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xCC8FD0FF.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xCD2A823A.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xCEDB33B2.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xD2748E73.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xD4A45A02.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xD9CE9B23.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xDAEDC6EC.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xDBC737C4.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xE349C52A.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xE4EA48DC.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xE6B4B2E3.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xE6EB2840.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xEC0E8740.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xEE3DEEBB.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xF43A0C4A.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xF5AC79AB.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xF600620F.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xF6AA7756.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xFBB78F9F.ps_5_x.hlsl │ │ │ └── lutbuilder_0xFE7649D3.ps_5_x.hlsl │ │ └── sm6 │ │ │ ├── lutbuilder_0x00251631.cs_6_6.hlsl │ │ │ ├── lutbuilder_0x00DF4329.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x0181A9C8.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x0649A5D1.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x06514B15.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x06F39D1E.cs_6_6.hlsl │ │ │ ├── lutbuilder_0x0837C427.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x08B5389E.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x13FBB787.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x1CBC853A.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x269E94C1.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x2B8E70DC.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x2DE8C9CC.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x3028EBE7.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x31F9420F.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x33247499.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x344502D6.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x34636F4C.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x34C7E3B9.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x3AD3CECF.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x477A56C2.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x484B4E2B.cs_6_6.hlsl │ │ │ ├── lutbuilder_0x49D6D8F2.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x4A0DBF57.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x4CC68F73.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x4CEC5329.ps_6_0.hlsl │ │ │ ├── lutbuilder_0x4F3FCE76.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x507B8FB6.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x50F22BD6.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x5D760393.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x61DB7BD7.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x670070BD.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x68071FDD.ps_6_0.hlsl │ │ │ ├── lutbuilder_0x6CFBD4C0.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x704E7934.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x74185C15.ps_6_0.hlsl │ │ │ ├── lutbuilder_0x773A9497.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x8119F75A.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x8146D205.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x8736B011.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x8AE76612.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x8B93346E.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x8B981EB3.ps_6_0.hlsl │ │ │ ├── lutbuilder_0x90BBE81C.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x93470AC3.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x94D26E3A.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x95B1E481.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x96DE7098.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x9C812EE8.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x9DF2DDD4.ps_6_6.hlsl │ │ │ ├── lutbuilder_0x9EB78561.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xA0A20D27.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xA7FC23A6.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xAB6082E4.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xAD0A58C0.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xB530B36A.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xB6CA5FD9.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xB7FDD0B1.cs_6_6.hlsl │ │ │ ├── lutbuilder_0xBAA27141.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xBBB5CA7B.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xBC6C4EF8.ps_6_0.hlsl │ │ │ ├── lutbuilder_0xC496B5C3.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xCBCF8905.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xCC93AA43.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xCD08EC7B.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xD07B008F.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xDA10C03E.cs_6_6.hlsl │ │ │ ├── lutbuilder_0xDA6D5332.cs_6_6.hlsl │ │ │ ├── lutbuilder_0xE06B93BC.cs_6_6.hlsl │ │ │ ├── lutbuilder_0xE1496ED1.ps_6_0.hlsl │ │ │ ├── lutbuilder_0xE3BB0C03.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xE7F2797E.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xEBB3E98C.ps_6_0.hlsl │ │ │ ├── lutbuilder_0xEC174252.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xF4962825.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xF6219091.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xF6904DE4.ps_6_6.hlsl │ │ │ ├── lutbuilder_0xF85851EA.cs_6_6.hlsl │ │ │ ├── lutbuilder_0xF890095A.cs_6_6.hlsl │ │ │ ├── lutbuilder_0xF9332C83.ps_6_6.hlsl │ │ │ └── lutbuilder_0xFB547C2F.ps_6_6.hlsl │ ├── shared.h │ └── swapchainproxy │ │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── valheim │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── lutbuilder_0xF70A0EED.ps_4_0.hlsl │ ├── shared.h │ ├── ssao1_0x3C16CFEE.ps_4_0.hlsl │ ├── ssao2_0x46CA62CB.ps_4_0.hlsl │ ├── ssao3_0xF369BD33.ps_4_0.hlsl │ ├── ssao4_0x1920DC80.ps_4_0.hlsl │ ├── sunshafts1_0x103B8DEE.ps_4_0.hlsl │ ├── sunshafts2_0xBCC908FC.ps_4_0.hlsl │ ├── sunshafts3_0x9325D090.ps_4_0.hlsl │ └── uber_0x99D271BE.ps_4_0.hlsl ├── vrising │ ├── HDRPfinal_0x6D3B4FF0.ps_5_0.hlsl │ ├── HDRPfinal_0xB0B50F1F.ps_5_0.hlsl │ ├── HDRPfxaa_0xBBC1FA0B.ps_5_0.hlsl │ ├── LutBuilder3D_0xF5AC76A9.cs_5_0.hlsl │ ├── UI_blurbackground_0x2C19A3F5.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── gamma_0xE52188B2.ps_4_0.hlsl │ ├── shared.h │ ├── uberpostTM_0x18151718.cs_5_0.hlsl │ ├── uberpostTM_0x8FEBA362.cs_5_0.hlsl │ ├── uberpost_0x3530AC89.cs_5_0.hlsl │ ├── uberpost_0xA7F94682.cs_5_0.hlsl │ ├── uberpost_0xE59F5A45.cs_5_0.hlsl │ ├── uberpost_0xE6B97032.cs_5_0.hlsl │ └── videos_0x8A6BCB4C.ps_4_0.hlsl ├── watchdogs │ ├── AOsomething_0xBB51F561.ps_5_0.hlsl │ ├── UI │ │ ├── UI_0x18A98259.ps_5_0.hlsl │ │ ├── UI_0x1D9DE59D.ps_5_0.hlsl │ │ ├── UI_0x241150DC.ps_5_0.hlsl │ │ ├── UI_0x3536A197.ps_5_0.hlsl │ │ ├── UI_0x3E3D329A.ps_5_0.hlsl │ │ ├── UI_0x4F111C22.ps_5_0.hlsl │ │ ├── UI_0x5A4A5CCB.ps_5_0.hlsl │ │ ├── UI_0x5AE351F5.ps_5_0.hlsl │ │ ├── UI_0x5B7F3F53.ps_5_0.hlsl │ │ ├── UI_0x79B4C97A.ps_5_0.hlsl │ │ ├── UI_0xA56D9CF5.ps_5_0.hlsl │ │ ├── UI_0xAB1543DA.ps_5_0.hlsl │ │ ├── UI_0xABB9827E.ps_5_0.hlsl │ │ ├── UI_0xB3FD67FA.ps_5_0.hlsl │ │ ├── UI_0xBB3A8176.ps_5_0.hlsl │ │ ├── UI_0xCAAA3088.ps_5_0.hlsl │ │ ├── UI_0xDE7D3985.ps_5_0.hlsl │ │ ├── UI_0xE73ECAA8.ps_5_0.hlsl │ │ ├── UI_0xEA5EA4BD.ps_5_0.hlsl │ │ ├── UI_0xF2112ED9.ps_5_0.hlsl │ │ ├── UI_0xF267B0FD.ps_5_0.hlsl │ │ ├── UI_0xF38B18E2.ps_5_0.hlsl │ │ ├── UI_0xF66408FD.ps_5_0.hlsl │ │ └── UI_0xFCF8A953.ps_5_0.hlsl │ ├── addon.cpp │ ├── bloomsomething_0x2A728B79.ps_5_0.hlsl │ ├── camera_0x9FA5703C.ps_5_0.hlsl │ ├── common.hlsl │ ├── exposure_0xB0F937B2.ps_5_0.hlsl │ ├── final_0x471BAF60.ps_5_0.hlsl │ ├── fxaa_0xAE725CAD.ps_5_0.hlsl │ ├── pills_0xB2F6A39B.ps_5_0.hlsl │ ├── profiler_0x8262D185.ps_5_0.hlsl │ ├── profiler_0xC4817D66.ps_5_0.hlsl │ ├── shared.h │ ├── tonemap2_0x281E8F72.ps_5_0.hlsl │ ├── tonemap_0x3FFE03C2.ps_5_0.hlsl │ ├── tonemap_0x43701848.ps_5_0.hlsl │ ├── tonemap_0x6C147AAD.ps_5_0.hlsl │ ├── tonemap_0x6E94A097.ps_5_0.hlsl │ ├── tonemap_0xE7F1A4C4.ps_5_0.hlsl │ ├── tonemap_dither_0x21AA1CAD.ps_5_0.hlsl │ ├── tonemap_dither_0xB49BF9C5.ps_5_0.hlsl │ ├── videos2_0x783B7659.ps_5_0.hlsl │ ├── videos_0x7D710FC6.ps_5_0.hlsl │ └── worldmap_0x2168D571.ps_5_0.hlsl ├── windblown │ ├── LutBuilderLdr0x13EEF169.ps_4_0.hlsl │ ├── UIfastadditive_0xD63FB4E2.ps_4_0.hlsl │ ├── addon.cpp │ ├── common.hlsl │ ├── final_0x20133A8B.ps_4_0.hlsl │ ├── fsr1_0xC244242D.ps_4_0.hlsl │ ├── fxaa_fsr1_0xE102D2F9.ps_4_0.hlsl │ ├── postfinal_0x7CEF5F47.ps_5_0.hlsl │ ├── postfinal_0xD00B5B47.ps_5_0.hlsl │ ├── shared.h │ ├── uberpost_0xFDA8A0F6.ps_4_0.hlsl │ └── videos_0xF804335C.ps_4_0.hlsl ├── wuchang │ ├── addon.cpp │ ├── composite │ │ ├── composite.hlsli │ │ └── composite_HDR10_0x394B5831.ps_6_6.hlsl │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsli │ │ ├── lutbuilder_0x4CC68F73.ps_6_6.hlsl │ │ ├── lutbuilder_0x507B8FB6.ps_6_6.hlsl │ │ ├── lutbuilder_0x9DF2DDD4.ps_6_6.hlsl │ │ ├── lutbuilder_0x9EB78561.ps_6_6.hlsl │ │ ├── lutbuilder_0xA0A20D27.ps_6_6.hlsl │ │ ├── lutbuilder_0xBBB5CA7B.ps_6_6.hlsl │ │ ├── lutbuilder_0xC496B5C3.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsli │ ├── shared.h │ └── swapchainproxy │ │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── wuchangsdr │ ├── addon.cpp │ ├── composite │ │ ├── composite.hlsli │ │ └── composite_HDR10_0x394B5831.ps_6_6.hlsl │ ├── lutbuilders │ │ ├── filmiclutbuilder.hlsli │ │ ├── lutbuilder_0x4CC68F73.ps_6_6.hlsl │ │ ├── lutbuilder_0x507B8FB6.ps_6_6.hlsl │ │ ├── lutbuilder_0x9DF2DDD4.ps_6_6.hlsl │ │ ├── lutbuilder_0x9EB78561.ps_6_6.hlsl │ │ ├── lutbuilder_0xA0A20D27.ps_6_6.hlsl │ │ ├── lutbuilder_0xBBB5CA7B.ps_6_6.hlsl │ │ ├── lutbuilder_0xC496B5C3.ps_6_6.hlsl │ │ └── lutbuildercommon.hlsli │ ├── shared.h │ └── swapchainproxy │ │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl ├── wutheringwaves │ ├── addon.cpp │ ├── common.hlsl │ ├── effects │ │ ├── 0x0B973B90.ps_6_0.hlsl │ │ ├── 0x92DD3433.ps_6_0.hlsl │ │ ├── bw_0x69701FAA.ps_6_0.hlsl │ │ ├── bw_0x770A08F8.ps_6_0.hlsl │ │ └── radial_blur_0x428B2DCA.ps_6_0.hlsl │ ├── lutbuilders │ │ ├── lutbuilder_0x08F01A32.ps_6_0.hlsl │ │ ├── lutbuilder_0x0A427D38.ps_6_0.hlsl │ │ ├── lutbuilder_0x0F5C0351.ps_6_0.hlsl │ │ ├── lutbuilder_0x1501C651.ps_6_0.hlsl │ │ ├── lutbuilder_0x1BCEF17C.ps_6_0.hlsl │ │ ├── lutbuilder_0x2581EB31.ps_6_0.hlsl │ │ ├── lutbuilder_0x2CFBFE7A.ps_6_0.hlsl │ │ ├── lutbuilder_0x322D4D00.ps_6_0.hlsl │ │ ├── lutbuilder_0x36DE6039.ps_6_0.hlsl │ │ ├── lutbuilder_0x44F17E34.ps_6_0.hlsl │ │ ├── lutbuilder_0x5A750625.ps_6_0.hlsl │ │ ├── lutbuilder_0x6015A202.ps_6_0.hlsl │ │ ├── lutbuilder_0x651A1198.ps_6_0.hlsl │ │ ├── lutbuilder_0x77593ED6.ps_6_0.hlsl │ │ ├── lutbuilder_0x8EF8F18D.ps_6_0.hlsl │ │ ├── lutbuilder_0x939171CE.ps_6_0.hlsl │ │ ├── lutbuilder_0x93BE5210.ps_6_0.hlsl │ │ ├── lutbuilder_0xAAC146AC.ps_6_0.hlsl │ │ ├── lutbuilder_0xBBBECBCF.ps_6_0.hlsl │ │ ├── lutbuilder_0xD6DDE4F6.ps_6_0.hlsl │ │ ├── lutbuilder_0xDF01A82D.ps_6_0.hlsl │ │ └── lutbuilder_0xF63FC0F4.ps_6_0.hlsl │ ├── output │ │ ├── output_0x01560207.ps_6_0.hlsl │ │ ├── output_0x025D6AED.ps_6_0.hlsl │ │ ├── output_0x12DBFA88.ps_6_0.hlsl │ │ ├── output_0x138FB7D5.ps_6_0.hlsl │ │ ├── output_0x1EBE7483.ps_6_0.hlsl │ │ ├── output_0x1FAA6D24.ps_6_0.hlsl │ │ ├── output_0x20238240.ps_6_0.hlsl │ │ ├── output_0x211629AD.ps_6_0.hlsl │ │ ├── output_0x226A4FB0.ps_6_0.hlsl │ │ ├── output_0x2A37175B.ps_6_0.hlsl │ │ ├── output_0x2AA4ED06.ps_6_0.hlsl │ │ ├── output_0x2CA3087F.ps_6_0.hlsl │ │ ├── output_0x37881A0F.ps_6_0.hlsl │ │ ├── output_0x39796B92.ps_6_0.hlsl │ │ ├── output_0x440BFB93.ps_6_0.hlsl │ │ ├── output_0x495E32E3.ps_6_0.hlsl │ │ ├── output_0x546E1024.ps_6_0.hlsl │ │ ├── output_0x568D2454.ps_6_0.hlsl │ │ ├── output_0x58BA5B18.ps_6_0.hlsl │ │ ├── output_0x5EDA75B1.ps_6_0.hlsl │ │ ├── output_0x5FCC9F84.ps_6_0.hlsl │ │ ├── output_0x619DF464.ps_6_0.hlsl │ │ ├── output_0x6E7D78B0.ps_6_0.hlsl │ │ ├── output_0x6ED2E185.ps_6_0.hlsl │ │ ├── output_0x797DD9A6.ps_6_0.hlsl │ │ ├── output_0x7B219DE4.ps_6_0.hlsl │ │ ├── output_0x7EA58CA3.ps_6_0.hlsl │ │ ├── output_0x7EC4A002.ps_6_0.hlsl │ │ ├── output_0x87DA07CC.ps_6_0.hlsl │ │ ├── output_0x9102B933.ps_6_0.hlsl │ │ ├── output_0x91C62D52.ps_6_0.hlsl │ │ ├── output_0x97C12E7C.ps_6_0.hlsl │ │ ├── output_0x97C727BA.ps_6_0.hlsl │ │ ├── output_0x9CB6CCBB.ps_6_0.hlsl │ │ ├── output_0xA909463A.ps_6_0.hlsl │ │ ├── output_0xA9D43A41.ps_6_0.hlsl │ │ ├── output_0xA9DD3A2D.ps_6_0.hlsl │ │ ├── output_0xAE1B57A3.ps_6_0.hlsl │ │ ├── output_0xAE41AE9A.ps_6_0.hlsl │ │ ├── output_0xAF08D04C.ps_6_0.hlsl │ │ ├── output_0xBB968DAF.ps_6_0.hlsl │ │ ├── output_0xBC7B2BC5.ps_6_0.hlsl │ │ ├── output_0xBFF696BF.ps_6_0.hlsl │ │ ├── output_0xC0355AD6.ps_6_0.hlsl │ │ ├── output_0xC64E428C.ps_6_0.hlsl │ │ ├── output_0xC84AC0D7.ps_6_0.hlsl │ │ ├── output_0xCB2E830E.ps_6_0.hlsl │ │ ├── output_0xCB3D001F.ps_6_0.hlsl │ │ ├── output_0xCBCCC56C.ps_6_0.hlsl │ │ ├── output_0xD64BA9FA.ps_6_0.hlsl │ │ ├── output_0xDE6553EA.ps_6_0.hlsl │ │ ├── output_0xDF53FEE4.ps_6_0.hlsl │ │ ├── output_0xE6E3B4C2.ps_6_0.hlsl │ │ ├── output_0xE925B69D.ps_6_0.hlsl │ │ ├── output_0xEBB04C74.ps_6_0.hlsl │ │ ├── output_0xEBFC482D.ps_6_0.hlsl │ │ ├── output_0xEE904E0D.ps_6_0.hlsl │ │ ├── output_0xF23A050B.ps_6_0.hlsl │ │ ├── output_0xF2478C7D.ps_6_0.hlsl │ │ └── output_0xF6F590A8.ps_6_0.hlsl │ ├── shared.h │ ├── sm5 │ │ ├── effects │ │ │ ├── bw_0xD52834A1.ps_5_0.hlsl │ │ │ └── radial_blur_0xF429546C.ps_5_0.hlsl │ │ ├── lutbuilders │ │ │ ├── lutbuilder_0x11ACA4BD.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x2E12ED8B.ps_5_0.hlsl │ │ │ ├── lutbuilder_0x3A88B087.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x425022C1.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x427C7627.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x55D043F9.ps_5_x.hlsl │ │ │ ├── lutbuilder_0x5D8A2455.ps_5_0.hlsl │ │ │ ├── lutbuilder_0x5F206ABE.ps_5_0.hlsl │ │ │ ├── lutbuilder_0x6C575CA6.ps_5_0.hlsl │ │ │ ├── lutbuilder_0x9081A2D8.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xB5E7E782.ps_5_0.hlsl │ │ │ ├── lutbuilder_0xDBC737C4.ps_5_x.hlsl │ │ │ ├── lutbuilder_0xE0E70D95.ps_5_0.hlsl │ │ │ ├── lutbuilder_0xE6B4B2E3.ps_5_x.hlsl │ │ │ └── lutbuilder_0xF600620F.ps_5_x.hlsl │ │ ├── output │ │ │ ├── output_0x00B8D072.ps_5_0.hlsl │ │ │ ├── output_0x0BF7B1EE.ps_5_0.hlsl │ │ │ ├── output_0x0E54CFDF.ps_5_0.hlsl │ │ │ ├── output_0x1225BF67.ps_5_x.hlsl │ │ │ ├── output_0x1B078340.ps_5_0.hlsl │ │ │ ├── output_0x1B1EED11.ps_5_0.hlsl │ │ │ ├── output_0x1D1C27C0.ps_5_x.hlsl │ │ │ ├── output_0x2143513F.ps_5_x.hlsl │ │ │ ├── output_0x2155CCC7.ps_5_0.hlsl │ │ │ ├── output_0x26801D61.ps_5_x.hlsl │ │ │ ├── output_0x271E2688.ps_5_x.hlsl │ │ │ ├── output_0x2BF73267.ps_5_0.hlsl │ │ │ ├── output_0x2C47EDE1.ps_5_0.hlsl │ │ │ ├── output_0x3B22B2CC.ps_5_x.hlsl │ │ │ ├── output_0x541DFC02.ps_5_0.hlsl │ │ │ ├── output_0x6A2033FC.ps_5_0.hlsl │ │ │ ├── output_0x75415DDC.ps_5_0.hlsl │ │ │ ├── output_0x7685A0B6.ps_5_0.hlsl │ │ │ ├── output_0x7A453AD3.ps_5_x.hlsl │ │ │ ├── output_0x86991152.ps_5_0.hlsl │ │ │ ├── output_0x869E4FCD.ps_5_0.hlsl │ │ │ ├── output_0x9E15E606.ps_5_0.hlsl │ │ │ ├── output_0xA20D9A5F.ps_5_0.hlsl │ │ │ ├── output_0xA48016B5.ps_5_x.hlsl │ │ │ ├── output_0xADEC6B58.ps_5_0.hlsl │ │ │ ├── output_0xB022C611.ps_5_x.hlsl │ │ │ ├── output_0xC0BEFB6C.ps_5_x.hlsl │ │ │ ├── output_0xC25C92B0.ps_5_0.hlsl │ │ │ ├── output_0xC509B01C.ps_5_0.hlsl │ │ │ ├── output_0xE3E21AA2.ps_5_0.hlsl │ │ │ ├── output_0xE66F4E2F.ps_5_0.hlsl │ │ │ ├── output_0xF1D52F3B.ps_5_0.hlsl │ │ │ ├── output_0xF2213204.ps_5_0.hlsl │ │ │ └── output_0xF57838BC.ps_5_x.hlsl │ │ └── ui │ │ │ ├── hud_0x6E0CE63F.ps_5_0.hlsl │ │ │ └── text_0x72FC213F.ps_5_0.hlsl │ ├── swapchainproxy │ │ ├── swap_chain_proxy_pixel_shader.ps_5_x.hlsl │ │ └── swap_chain_proxy_vertex_shader.vs_5_x.hlsl │ └── ui │ │ ├── forte_0x378E4822.ps_6_0.hlsl │ │ ├── forte_0xD0E3C6FB.ps_6_0.hlsl │ │ ├── gacha_0x4A683745.ps_6_0.hlsl │ │ ├── hud_0x0C99B6FD.ps_6_0.hlsl │ │ ├── hud_0x832A1816.ps_6_0.hlsl │ │ ├── hud_0xDB7AFE3D.ps_6_0.hlsl │ │ ├── hud_0xE37D7103.ps_6_0.hlsl │ │ ├── minimap_0x33FFD151.ps_6_0.hlsl │ │ ├── minimap_0x5798928D.ps_6_0.hlsl │ │ ├── minimap_0xA070682C.ps_6_0.hlsl │ │ ├── minimap_0xBCA6C57B.ps_6_0.hlsl │ │ ├── minimap_0xFF9C3A7B.ps_6_0.hlsl │ │ ├── text_0x202D1AEF.ps_6_0.hlsl │ │ ├── text_0x68282E68.ps_6_0.hlsl │ │ ├── text_0x7556E396.ps_6_0.hlsl │ │ ├── text_0xB46C8A3D.ps_6_0.hlsl │ │ ├── text_0xCB6948CA.ps_6_0.hlsl │ │ └── text_0xE4AD2B3F.ps_6_0.hlsl ├── xfextremeformula │ ├── addon.cpp │ ├── post_final_main_menu_0xA95311EA.ps_5_0.hlsl │ ├── shared.h │ ├── swap_chain_proxy_pixel_shader.ps_4_0.hlsl │ ├── swap_chain_proxy_vertex_shader.vs_4_0.hlsl │ ├── uber2_0xF47A06A5.ps_4_0.hlsl │ └── uber_0xA34705B5.ps_4_0.hlsl └── zelda-eow │ ├── addon.cpp │ ├── bloom_0x0A67EFF4.frag.slang │ ├── common.slangi │ ├── output_0xF3C7B934.frag.slang │ ├── shared.h │ ├── tonemap_0xA380E737.frag.slang │ ├── tonemap_0xF1FC454C.frag.slang │ ├── tonemap_la_0xEF7E426D.frag.slang │ └── ui_0x445CD3C6.frag.slang ├── mods ├── shader.hpp └── swapchain.hpp ├── reshadefx ├── RenoDXHelper.addonfx ├── ShortFuse22ForSRGB.fx ├── ShortFuseACES.fx ├── ShortFuseBT1886For22.fx ├── ShortFuseBT1886ForSRGB.fx ├── ShortFuseFilmGrain.fx └── ShortFuseRenoDRT.fx ├── shaders ├── DICE.hlsl ├── aces.hlsl ├── color.hlsl ├── color_convert.hlsl ├── colorcorrect.hlsl ├── colorgrade.hlsl ├── cross.hlsl ├── debug.hlsl ├── deprecated.hlsl ├── draw.hlsl ├── effects.hlsl ├── frostbite.hlsl ├── inverse_tonemap.hlsl ├── lut.hlsl ├── math.hlsl ├── random.hlsl ├── reinhard.hlsl ├── reno_drt.hlsl ├── renodx.hlsl ├── tonemap.hlsl └── tonemap │ ├── daniele.hlsl │ └── hermite_spline.hlsl ├── templates └── settings.hpp └── utils ├── bitwise.hpp ├── constants.hpp ├── data.hpp ├── date.hpp ├── descriptor.hpp ├── device.hpp ├── directx.hpp ├── float16.hpp ├── format.hpp ├── hash.hpp ├── ini_file.hpp ├── log.hpp ├── mutex.hpp ├── path.hpp ├── pipeline.hpp ├── pipeline_layout.hpp ├── platform.hpp ├── random.hpp ├── resource.hpp ├── settings.hpp ├── shader.hpp ├── shader_compiler_directx.hpp ├── shader_compiler_watcher.hpp ├── shader_decompiler_dxc.hpp ├── shader_dump.hpp ├── state.hpp ├── string_view.hpp ├── swapchain.hpp ├── trace.hpp └── vtable.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-hlsl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/auto-merge-hlsl.yml -------------------------------------------------------------------------------- /.github/workflows/clang-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/clang-x64.yml -------------------------------------------------------------------------------- /.github/workflows/clang-x86.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/clang-x86.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/ninja-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/ninja-x64.yml -------------------------------------------------------------------------------- /.github/workflows/ninja-x86.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/ninja-x86.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/snapshot.yml -------------------------------------------------------------------------------- /.github/workflows/visual-studio-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/visual-studio-x64.yml -------------------------------------------------------------------------------- /.github/workflows/visual-studio-x86.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.github/workflows/visual-studio-x86.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.useVsDeveloperEnvironment": "always" 3 | } -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /embedfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/embedfile.cpp -------------------------------------------------------------------------------- /external/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/external/.clang-tidy -------------------------------------------------------------------------------- /include/crc32_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/include/crc32_hash.hpp -------------------------------------------------------------------------------- /make-sln.cmd: -------------------------------------------------------------------------------- 1 | cmake -DCMAKE_SYSTEM_VERSION=10.0.22621.0 -B build -S . -G "Visual Studio 17 2022" -T host=x86 -A x64 2 | -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/notes.md -------------------------------------------------------------------------------- /scripts/deploy-early-access.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/scripts/deploy-early-access.cmd -------------------------------------------------------------------------------- /scripts/deploy-early-access.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/scripts/deploy-early-access.ps1 -------------------------------------------------------------------------------- /scripts/helper-module.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/scripts/helper-module.psm1 -------------------------------------------------------------------------------- /src/addons/devkit/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/addons/devkit/addon.cpp -------------------------------------------------------------------------------- /src/addons/fpslimiter/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/addons/fpslimiter/addon.cpp -------------------------------------------------------------------------------- /src/decompiler/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/decompiler/cli.cpp -------------------------------------------------------------------------------- /src/games/1000xresist/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/1000xresist/DICE.hlsl -------------------------------------------------------------------------------- /src/games/1000xresist/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/1000xresist/addon.cpp -------------------------------------------------------------------------------- /src/games/1000xresist/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/1000xresist/common.hlsl -------------------------------------------------------------------------------- /src/games/1000xresist/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/1000xresist/shared.h -------------------------------------------------------------------------------- /src/games/acecombat7/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/acecombat7/addon.cpp -------------------------------------------------------------------------------- /src/games/acecombat7/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/acecombat7/shared.h -------------------------------------------------------------------------------- /src/games/acecombat7/xx_0x82BED845.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/acecombat7/xx_0x82BED845.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/aisomniumfiles/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/aisomniumfiles/addon.cpp -------------------------------------------------------------------------------- /src/games/aisomniumfiles/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/aisomniumfiles/common.hlsl -------------------------------------------------------------------------------- /src/games/aisomniumfiles/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/aisomniumfiles/shared.h -------------------------------------------------------------------------------- /src/games/alicemadnessreturns/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/alicemadnessreturns/addon.cpp -------------------------------------------------------------------------------- /src/games/alicemadnessreturns/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/alicemadnessreturns/common.hlsl -------------------------------------------------------------------------------- /src/games/alicemadnessreturns/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/alicemadnessreturns/shared.h -------------------------------------------------------------------------------- /src/games/alienisolation/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/alienisolation/addon.cpp -------------------------------------------------------------------------------- /src/games/alienisolation/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/alienisolation/common.hlsl -------------------------------------------------------------------------------- /src/games/alienisolation/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/alienisolation/shared.h -------------------------------------------------------------------------------- /src/games/alienisolation/tonemap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/alienisolation/tonemap.hlsl -------------------------------------------------------------------------------- /src/games/angerfoot/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/angerfoot/addon.cpp -------------------------------------------------------------------------------- /src/games/angerfoot/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/angerfoot/common.hlsl -------------------------------------------------------------------------------- /src/games/angerfoot/fxaa_0xCC8B6ACF.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/angerfoot/fxaa_0xCC8B6ACF.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/angerfoot/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/angerfoot/shared.h -------------------------------------------------------------------------------- /src/games/angerfoot/smaa_0x366EE13E.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/angerfoot/smaa_0x366EE13E.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/animalwell/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/animalwell/addon.cpp -------------------------------------------------------------------------------- /src/games/animalwell/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/animalwell/shared.h -------------------------------------------------------------------------------- /src/games/aptinnocence/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/aptinnocence/addon.cpp -------------------------------------------------------------------------------- /src/games/aptinnocence/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/aptinnocence/common.hlsl -------------------------------------------------------------------------------- /src/games/aptinnocence/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/aptinnocence/shared.h -------------------------------------------------------------------------------- /src/games/artofrally/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/artofrally/addon.cpp -------------------------------------------------------------------------------- /src/games/artofrally/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/artofrally/common.hlsl -------------------------------------------------------------------------------- /src/games/artofrally/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/artofrally/shared.h -------------------------------------------------------------------------------- /src/games/asscreedmirage/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedmirage/addon.cpp -------------------------------------------------------------------------------- /src/games/asscreedmirage/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedmirage/shared.h -------------------------------------------------------------------------------- /src/games/asscreedmirage/tonemap.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedmirage/tonemap.hlsli -------------------------------------------------------------------------------- /src/games/asscreedorigins-odyssey/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedorigins-odyssey/addon.cpp -------------------------------------------------------------------------------- /src/games/asscreedorigins-odyssey/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedorigins-odyssey/common.hlsli -------------------------------------------------------------------------------- /src/games/asscreedorigins-odyssey/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedorigins-odyssey/shared.h -------------------------------------------------------------------------------- /src/games/asscreedshadows/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedshadows/addon.cpp -------------------------------------------------------------------------------- /src/games/asscreedshadows/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedshadows/common.hlsli -------------------------------------------------------------------------------- /src/games/asscreedshadows/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedshadows/shared.h -------------------------------------------------------------------------------- /src/games/asscreedvalhalla/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedvalhalla/addon.cpp -------------------------------------------------------------------------------- /src/games/asscreedvalhalla/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedvalhalla/common.hlsl -------------------------------------------------------------------------------- /src/games/asscreedvalhalla/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/asscreedvalhalla/shared.h -------------------------------------------------------------------------------- /src/games/atlasfallen/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/atlasfallen/addon.cpp -------------------------------------------------------------------------------- /src/games/atlasfallen/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/atlasfallen/common.hlsl -------------------------------------------------------------------------------- /src/games/atlasfallen/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/atlasfallen/shared.h -------------------------------------------------------------------------------- /src/games/avowed/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/avowed/addon.cpp -------------------------------------------------------------------------------- /src/games/avowed/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/avowed/common.hlsl -------------------------------------------------------------------------------- /src/games/avowed/include/aces.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/avowed/include/aces.hlsl -------------------------------------------------------------------------------- /src/games/avowed/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/avowed/shared.h -------------------------------------------------------------------------------- /src/games/awakenastralblade/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/awakenastralblade/addon.cpp -------------------------------------------------------------------------------- /src/games/awakenastralblade/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/awakenastralblade/common.hlsl -------------------------------------------------------------------------------- /src/games/awakenastralblade/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/awakenastralblade/shared.h -------------------------------------------------------------------------------- /src/games/baldursgate3/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/baldursgate3/addon.cpp -------------------------------------------------------------------------------- /src/games/baldursgate3/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/baldursgate3/common.hlsli -------------------------------------------------------------------------------- /src/games/baldursgate3/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/baldursgate3/shared.h -------------------------------------------------------------------------------- /src/games/batmanak/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/batmanak/addon.cpp -------------------------------------------------------------------------------- /src/games/batmanak/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/batmanak/shared.h -------------------------------------------------------------------------------- /src/games/batmanak/tonemapper.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/batmanak/tonemapper.hlsl -------------------------------------------------------------------------------- /src/games/batmanak/uncharted2extended.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/batmanak/uncharted2extended.hlsli -------------------------------------------------------------------------------- /src/games/batmanak/video_0x12200F17.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/batmanak/video_0x12200F17.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/betonbrutal/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/betonbrutal/addon.cpp -------------------------------------------------------------------------------- /src/games/betonbrutal/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/betonbrutal/common.hlsl -------------------------------------------------------------------------------- /src/games/betonbrutal/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/betonbrutal/shared.h -------------------------------------------------------------------------------- /src/games/beyondblue/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/beyondblue/addon.cpp -------------------------------------------------------------------------------- /src/games/beyondblue/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/beyondblue/common.hlsli -------------------------------------------------------------------------------- /src/games/beyondblue/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/beyondblue/shared.h -------------------------------------------------------------------------------- /src/games/beyondblue/tonemap.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/beyondblue/tonemap.hlsli -------------------------------------------------------------------------------- /src/games/bge20/00_ui_0x0F50F420.ps_6_2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bge20/00_ui_0x0F50F420.ps_6_2.hlsl -------------------------------------------------------------------------------- /src/games/bge20/02_bloom_0xF5D62886.ps_6_2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bge20/02_bloom_0xF5D62886.ps_6_2.hlsl -------------------------------------------------------------------------------- /src/games/bge20/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bge20/addon.cpp -------------------------------------------------------------------------------- /src/games/bge20/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bge20/shared.h -------------------------------------------------------------------------------- /src/games/bioshock-alt/0x6457104F.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock-alt/0x6457104F.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/bioshock-alt/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock-alt/addon.cpp -------------------------------------------------------------------------------- /src/games/bioshock-alt/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock-alt/shared.h -------------------------------------------------------------------------------- /src/games/bioshock/Fog2_0x0C454543.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/Fog2_0x0C454543.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/bioshock/Fog3_0x3F8A5A79.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/Fog3_0x3F8A5A79.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/bioshock/Fog4_0x64B4F8D8.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/Fog4_0x64B4F8D8.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/bioshock/Fog5_0x21303C74.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/Fog5_0x21303C74.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/bioshock/Fog6_0x63693A7F.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/Fog6_0x63693A7F.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/bioshock/Fog_0xDAA8E1E9.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/Fog_0xDAA8E1E9.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/bioshock/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/addon.cpp -------------------------------------------------------------------------------- /src/games/bioshock/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bioshock/shared.h -------------------------------------------------------------------------------- /src/games/bladesoffire/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bladesoffire/addon.cpp -------------------------------------------------------------------------------- /src/games/bladesoffire/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bladesoffire/shared.h -------------------------------------------------------------------------------- /src/games/bmw/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/addon.cpp -------------------------------------------------------------------------------- /src/games/bmw/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/common.hlsl -------------------------------------------------------------------------------- /src/games/bmw/final_0xA6EBE600.ps_6_6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/final_0xA6EBE600.ps_6_6.hlsl -------------------------------------------------------------------------------- /src/games/bmw/lutbuilder_0x2136F151.ps_6_6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/lutbuilder_0x2136F151.ps_6_6.hlsl -------------------------------------------------------------------------------- /src/games/bmw/lutbuilder_0x22FF7D28.ps_6_6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/lutbuilder_0x22FF7D28.ps_6_6.hlsl -------------------------------------------------------------------------------- /src/games/bmw/lutbuilder_0xA43658B6.ps_6_6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/lutbuilder_0xA43658B6.ps_6_6.hlsl -------------------------------------------------------------------------------- /src/games/bmw/lutbuilder_0xBFA7B92F.ps_6_6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/lutbuilder_0xBFA7B92F.ps_6_6.hlsl -------------------------------------------------------------------------------- /src/games/bmw/lutbuilder_0xE1970A14.ps_6_6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/lutbuilder_0xE1970A14.ps_6_6.hlsl -------------------------------------------------------------------------------- /src/games/bmw/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bmw/shared.h -------------------------------------------------------------------------------- /src/games/borderlands4/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/borderlands4/addon.cpp -------------------------------------------------------------------------------- /src/games/borderlands4/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/borderlands4/shared.h -------------------------------------------------------------------------------- /src/games/borderlandsgotyenhanced/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/borderlandsgotyenhanced/addon.cpp -------------------------------------------------------------------------------- /src/games/borderlandsgotyenhanced/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/borderlandsgotyenhanced/common.hlsl -------------------------------------------------------------------------------- /src/games/borderlandsgotyenhanced/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/borderlandsgotyenhanced/shared.h -------------------------------------------------------------------------------- /src/games/bulletstormfullclip/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bulletstormfullclip/addon.cpp -------------------------------------------------------------------------------- /src/games/bulletstormfullclip/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bulletstormfullclip/common.hlsl -------------------------------------------------------------------------------- /src/games/bulletstormfullclip/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/bulletstormfullclip/shared.h -------------------------------------------------------------------------------- /src/games/callofduty_t7_blackops3/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/callofduty_t7_blackops3/addon.cpp -------------------------------------------------------------------------------- /src/games/callofduty_t7_blackops3/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/callofduty_t7_blackops3/common.hlsl -------------------------------------------------------------------------------- /src/games/callofduty_t7_blackops3/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/callofduty_t7_blackops3/shared.h -------------------------------------------------------------------------------- /src/games/castlevanialos/0x03761282.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0x03761282.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/0x12953C3F.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0x12953C3F.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/0x13DD44CF.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0x13DD44CF.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/0x23B5C886.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0x23B5C886.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/0x30AB9231.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0x30AB9231.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/0x880A17D3.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0x880A17D3.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/0xBABB263A.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0xBABB263A.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/0xE95C8216.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/0xE95C8216.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/addon.cpp -------------------------------------------------------------------------------- /src/games/castlevanialos/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/common.hlsl -------------------------------------------------------------------------------- /src/games/castlevanialos/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/castlevanialos/shared.h -------------------------------------------------------------------------------- /src/games/childrenofthesun/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/childrenofthesun/addon.cpp -------------------------------------------------------------------------------- /src/games/childrenofthesun/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/childrenofthesun/common.hlsl -------------------------------------------------------------------------------- /src/games/childrenofthesun/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/childrenofthesun/shared.h -------------------------------------------------------------------------------- /src/games/citizensleeper2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/citizensleeper2/addon.cpp -------------------------------------------------------------------------------- /src/games/citizensleeper2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/citizensleeper2/shared.h -------------------------------------------------------------------------------- /src/games/clairobscur_expedition33/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/clairobscur_expedition33/addon.cpp -------------------------------------------------------------------------------- /src/games/clairobscur_expedition33/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/clairobscur_expedition33/shared.h -------------------------------------------------------------------------------- /src/games/clivebarkersjericho/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/clivebarkersjericho/addon.cpp -------------------------------------------------------------------------------- /src/games/clivebarkersjericho/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/clivebarkersjericho/shared.h -------------------------------------------------------------------------------- /src/games/cp2077/aces_cdpr.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/aces_cdpr.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/addon.cpp -------------------------------------------------------------------------------- /src/games/cp2077/colormath.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/colormath.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/composite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/composite.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/composite2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/composite2.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/cp2077.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/cp2077.h -------------------------------------------------------------------------------- /src/games/cp2077/hud_0xC83E64DF.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/hud_0xC83E64DF.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/hud_221_0x11C9D257.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/hud_221_0x11C9D257.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/hud_23_0x066EBCF7.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/hud_23_0x066EBCF7.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/hud_new_0xFBFF99B4.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/hud_new_0xFBFF99B4.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/injectedBuffer.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/injectedBuffer.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/menu2_0x55E00CA2.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/menu2_0x55E00CA2.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/menu3_0xB489149F.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/menu3_0xB489149F.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/menu4_0xE57907C4.ps_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/menu4_0xE57907C4.ps_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/menu_0xDE517511.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/menu_0xDE517511.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/menu_23_0x3BF1C870.cs_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/menu_23_0x3BF1C870.cs_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/output_0xCBFFC2A3.ps_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/output_0xCBFFC2A3.ps_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/skymask_0x1C0F46FD_ps_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/skymask_0x1C0F46FD_ps_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/tonemapper.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/tonemapper.hlsl -------------------------------------------------------------------------------- /src/games/cp2077/unknown_0x0B908CCF.ps_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cp2077/unknown_0x0B908CCF.ps_6_0.hlsl -------------------------------------------------------------------------------- /src/games/cronosthenewdawn/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cronosthenewdawn/addon.cpp -------------------------------------------------------------------------------- /src/games/cronosthenewdawn/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/cronosthenewdawn/shared.h -------------------------------------------------------------------------------- /src/games/dai/ResScale2_0xE6C75B8E.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/ResScale2_0xE6C75B8E.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/UIalpha_0xE8AAA41F.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/UIalpha_0xE8AAA41F.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/addon.cpp -------------------------------------------------------------------------------- /src/games/dai/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/common.hlsl -------------------------------------------------------------------------------- /src/games/dai/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/shared.h -------------------------------------------------------------------------------- /src/games/dai/tonemap1_0x39C155AA.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemap1_0x39C155AA.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemap2_0x59D67072.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemap2_0x59D67072.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemap3_0xA6483DBE.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemap3_0xA6483DBE.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemap4_0x4A22EBE7.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemap4_0x4A22EBE7.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemap7_0x848FA77D.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemap7_0x848FA77D.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemapC1_0xB3B5916C.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemapC1_0xB3B5916C.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemapC2_0x298147DD.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemapC2_0x298147DD.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemapC3_0xEE7DEA72.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemapC3_0xEE7DEA72.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/tonemapC4_0xE30CE1FB.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/tonemapC4_0xE30CE1FB.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dai/videos_0x5545BDF0.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dai/videos_0x5545BDF0.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/darksiders-warmastered/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksiders-warmastered/addon.cpp -------------------------------------------------------------------------------- /src/games/darksiders-warmastered/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksiders-warmastered/common.hlsl -------------------------------------------------------------------------------- /src/games/darksiders-warmastered/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksiders-warmastered/shared.h -------------------------------------------------------------------------------- /src/games/darksouls/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksouls/DICE.hlsl -------------------------------------------------------------------------------- /src/games/darksouls/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksouls/addon.cpp -------------------------------------------------------------------------------- /src/games/darksouls/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksouls/shared.h -------------------------------------------------------------------------------- /src/games/darksouls/ui_0x64F62639.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksouls/ui_0x64F62639.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/darksouls/ui_0x809881A3.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksouls/ui_0x809881A3.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/darksouls/ui_0xB0850BF3.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darksouls/ui_0xB0850BF3.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/darktide/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darktide/addon.cpp -------------------------------------------------------------------------------- /src/games/darktide/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darktide/common.hlsl -------------------------------------------------------------------------------- /src/games/darktide/lilium_cas.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darktide/lilium_cas.hlsl -------------------------------------------------------------------------------- /src/games/darktide/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darktide/shared.h -------------------------------------------------------------------------------- /src/games/darktide/video_0x9715D453.ps_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/darktide/video_0x9715D453.ps_6_0.hlsl -------------------------------------------------------------------------------- /src/games/dbzspark/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dbzspark/addon.cpp -------------------------------------------------------------------------------- /src/games/dbzspark/composite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dbzspark/composite.hlsl -------------------------------------------------------------------------------- /src/games/dbzspark/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dbzspark/shared.h -------------------------------------------------------------------------------- /src/games/deadisland2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deadisland2/addon.cpp -------------------------------------------------------------------------------- /src/games/deadisland2/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deadisland2/common.hlsli -------------------------------------------------------------------------------- /src/games/deadisland2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deadisland2/shared.h -------------------------------------------------------------------------------- /src/games/deathsdoor/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deathsdoor/addon.cpp -------------------------------------------------------------------------------- /src/games/deathsdoor/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deathsdoor/shared.h -------------------------------------------------------------------------------- /src/games/deathsdoor/ui_0x2B868B21.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deathsdoor/ui_0x2B868B21.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/deathstrandingdc/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deathstrandingdc/addon.cpp -------------------------------------------------------------------------------- /src/games/deathstrandingdc/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deathstrandingdc/common.hlsli -------------------------------------------------------------------------------- /src/games/deathstrandingdc/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/deathstrandingdc/shared.h -------------------------------------------------------------------------------- /src/games/descenders/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/descenders/addon.cpp -------------------------------------------------------------------------------- /src/games/descenders/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/descenders/common.hlsl -------------------------------------------------------------------------------- /src/games/descenders/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/descenders/shared.h -------------------------------------------------------------------------------- /src/games/digimonstorytimestranger/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/digimonstorytimestranger/addon.cpp -------------------------------------------------------------------------------- /src/games/digimonstorytimestranger/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/digimonstorytimestranger/shared.h -------------------------------------------------------------------------------- /src/games/dirtrally2/UI1_0x289F2576.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dirtrally2/UI1_0x289F2576.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dirtrally2/UI2_0x384FC9E6.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dirtrally2/UI2_0x384FC9E6.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dirtrally2/UI3_0xEE90D7DD.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dirtrally2/UI3_0xEE90D7DD.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dirtrally2/UI4_0x498A6414.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dirtrally2/UI4_0x498A6414.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dirtrally2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dirtrally2/addon.cpp -------------------------------------------------------------------------------- /src/games/dirtrally2/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dirtrally2/common.hlsl -------------------------------------------------------------------------------- /src/games/dirtrally2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dirtrally2/shared.h -------------------------------------------------------------------------------- /src/games/dishonored/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dishonored/addon.cpp -------------------------------------------------------------------------------- /src/games/dishonored/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dishonored/common.hlsl -------------------------------------------------------------------------------- /src/games/dishonored/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dishonored/shared.h -------------------------------------------------------------------------------- /src/games/dmc5/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dmc5/addon.cpp -------------------------------------------------------------------------------- /src/games/dmc5/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dmc5/common.hlsli -------------------------------------------------------------------------------- /src/games/dmc5/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dmc5/shared.h -------------------------------------------------------------------------------- /src/games/doom-eternal/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-eternal/addon.cpp -------------------------------------------------------------------------------- /src/games/doom-eternal/common.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-eternal/common.slang -------------------------------------------------------------------------------- /src/games/doom-eternal/include/aces.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-eternal/include/aces.hlsl -------------------------------------------------------------------------------- /src/games/doom-eternal/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-eternal/shared.h -------------------------------------------------------------------------------- /src/games/doom-tda/0x2D7BED0C.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/0x2D7BED0C.comp.glsl -------------------------------------------------------------------------------- /src/games/doom-tda/0x2D7BED0C.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/0x2D7BED0C.comp.spv -------------------------------------------------------------------------------- /src/games/doom-tda/0x5786A75C.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/0x5786A75C.comp.glsl -------------------------------------------------------------------------------- /src/games/doom-tda/0x5786A75C.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/0x5786A75C.comp.spv -------------------------------------------------------------------------------- /src/games/doom-tda/0xE3A05FA7.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/0xE3A05FA7.comp.glsl -------------------------------------------------------------------------------- /src/games/doom-tda/0xE3A05FA7.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/0xE3A05FA7.comp.spv -------------------------------------------------------------------------------- /src/games/doom-tda/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/addon.cpp -------------------------------------------------------------------------------- /src/games/doom-tda/include/common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/include/common.glsl -------------------------------------------------------------------------------- /src/games/doom-tda/include/settings.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/doom-tda/include/settings.glsl -------------------------------------------------------------------------------- /src/games/duniaengine/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/duniaengine/addon.cpp -------------------------------------------------------------------------------- /src/games/duniaengine/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/duniaengine/common.hlsl -------------------------------------------------------------------------------- /src/games/duniaengine/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/duniaengine/shared.h -------------------------------------------------------------------------------- /src/games/dxmd/01_final_0x7FF6EC9E.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dxmd/01_final_0x7FF6EC9E.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dxmd/02_ui_0xE3DF9B3A.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dxmd/02_ui_0xE3DF9B3A.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dxmd/09_lut_0xEDC9A10D.cs_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dxmd/09_lut_0xEDC9A10D.cs_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dxmd/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dxmd/addon.cpp -------------------------------------------------------------------------------- /src/games/dxmd/finalxx_0x9B8BB508.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dxmd/finalxx_0x9B8BB508.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/dxmd/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dxmd/shared.h -------------------------------------------------------------------------------- /src/games/dyinglight/TAA_0xA67ABF78.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight/TAA_0xA67ABF78.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dyinglight/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight/addon.cpp -------------------------------------------------------------------------------- /src/games/dyinglight/cap_0x8194877A.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight/cap_0x8194877A.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/dyinglight/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight/common.hlsli -------------------------------------------------------------------------------- /src/games/dyinglight/lighting/lighting.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight/lighting/lighting.hlsli -------------------------------------------------------------------------------- /src/games/dyinglight/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight/shared.h -------------------------------------------------------------------------------- /src/games/dyinglight/sky/sky.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight/sky/sky.hlsli -------------------------------------------------------------------------------- /src/games/dyinglight2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight2/addon.cpp -------------------------------------------------------------------------------- /src/games/dyinglight2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/dyinglight2/shared.h -------------------------------------------------------------------------------- /src/games/elitedangerous/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/elitedangerous/addon.cpp -------------------------------------------------------------------------------- /src/games/elitedangerous/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/elitedangerous/common.hlsli -------------------------------------------------------------------------------- /src/games/elitedangerous/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/elitedangerous/shared.h -------------------------------------------------------------------------------- /src/games/ereban/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/addon.cpp -------------------------------------------------------------------------------- /src/games/ereban/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/common.hlsl -------------------------------------------------------------------------------- /src/games/ereban/final_0x20133A8B.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/final_0x20133A8B.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ereban/fxaa_0x064D62B7.cs_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/fxaa_0x064D62B7.cs_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ereban/rcas_0x52B5985A.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/rcas_0x52B5985A.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ereban/rcas_0xE0FE0468.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/rcas_0xE0FE0468.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ereban/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/shared.h -------------------------------------------------------------------------------- /src/games/ereban/videos_0x8A6BCB4C.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ereban/videos_0x8A6BCB4C.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/eternights/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/eternights/addon.cpp -------------------------------------------------------------------------------- /src/games/eternights/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/eternights/shared.h -------------------------------------------------------------------------------- /src/games/fallout4/11_dof1_0x7543CFBC.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/11_dof1_0x7543CFBC.hlsl -------------------------------------------------------------------------------- /src/games/fallout4/11_dof2_0x5E75012A.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/11_dof2_0x5E75012A.hlsl -------------------------------------------------------------------------------- /src/games/fallout4/11_dof3_0xC7AD6297.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/11_dof3_0xC7AD6297.hlsl -------------------------------------------------------------------------------- /src/games/fallout4/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/addon.cpp -------------------------------------------------------------------------------- /src/games/fallout4/fxaa_0x4FB4DA20.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/fxaa_0x4FB4DA20.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout4/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/shared.h -------------------------------------------------------------------------------- /src/games/fallout4/taa2_0x61CC29E6.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/taa2_0x61CC29E6.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout4/taa_0x8CAC3BD9.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout4/taa_0x8CAC3BD9.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/addon.cpp -------------------------------------------------------------------------------- /src/games/fallout76/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/common.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/load_0x46A6A1FE.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/load_0x46A6A1FE.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/load_0xD66588EF.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/load_0xD66588EF.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/load_0xFEA4E7DB.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/load_0xFEA4E7DB.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/shared.h -------------------------------------------------------------------------------- /src/games/fallout76/taa_0x3778E664.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/taa_0x3778E664.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/taa_0xAF2731D9.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/taa_0xAF2731D9.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/text_0x2CA9CD55.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/text_0x2CA9CD55.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/text_0xA6AB1C75.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/text_0xA6AB1C75.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/ui_0x21A11DE7.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/ui_0x21A11DE7.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/ui_0x28213F99.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/ui_0x28213F99.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/ui_0x4B3388FE.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/ui_0x4B3388FE.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/ui_0x4D248432.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/ui_0x4D248432.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/ui_0x6CF04AC0.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/ui_0x6CF04AC0.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fallout76/ui_0xF2CCBA8C.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fallout76/ui_0xF2CCBA8C.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/farcry5/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry5/addon.cpp -------------------------------------------------------------------------------- /src/games/farcry5/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry5/common.hlsli -------------------------------------------------------------------------------- /src/games/farcry5/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry5/shared.h -------------------------------------------------------------------------------- /src/games/farcry5/video_0xBBBC0168.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry5/video_0xBBBC0168.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/farcry6/CAS_0x140B4D3B.ps_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry6/CAS_0x140B4D3B.ps_6_0.hlsl -------------------------------------------------------------------------------- /src/games/farcry6/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry6/addon.cpp -------------------------------------------------------------------------------- /src/games/farcry6/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry6/common.hlsli -------------------------------------------------------------------------------- /src/games/farcry6/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/farcry6/shared.h -------------------------------------------------------------------------------- /src/games/fe/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/addon.cpp -------------------------------------------------------------------------------- /src/games/fe/bloom_0x50ADC1A6.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/bloom_0x50ADC1A6.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/fe/bloom_0xE6F106CA.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/bloom_0xE6F106CA.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/fe/blur_0x88E852B9.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/blur_0x88E852B9.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/fe/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/common.hlsl -------------------------------------------------------------------------------- /src/games/fe/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/shared.h -------------------------------------------------------------------------------- /src/games/fe/tonemap_0x9EFFF420.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/tonemap_0x9EFFF420.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/fe/vignette_0x1BA9B943.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fe/vignette_0x1BA9B943.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ff7rebirth/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7rebirth/addon.cpp -------------------------------------------------------------------------------- /src/games/ff7rebirth/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7rebirth/common.hlsl -------------------------------------------------------------------------------- /src/games/ff7rebirth/hdrcomposite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7rebirth/hdrcomposite.hlsl -------------------------------------------------------------------------------- /src/games/ff7rebirth/include/CBuffer_View.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7rebirth/include/CBuffer_View.hlsl -------------------------------------------------------------------------------- /src/games/ff7rebirth/include/Registers.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7rebirth/include/Registers.hlsl -------------------------------------------------------------------------------- /src/games/ff7rebirth/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7rebirth/shared.h -------------------------------------------------------------------------------- /src/games/ff7remake/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7remake/addon.cpp -------------------------------------------------------------------------------- /src/games/ff7remake/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7remake/common.hlsl -------------------------------------------------------------------------------- /src/games/ff7remake/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ff7remake/shared.h -------------------------------------------------------------------------------- /src/games/ffx/00_ui_draw_0x04FDEDF9.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/00_ui_draw_0x04FDEDF9.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ffx/03_bright_0xB8F57CD5.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/03_bright_0xB8F57CD5.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ffx/06_video_0xA3657554.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/06_video_0xA3657554.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ffx/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/addon.cpp -------------------------------------------------------------------------------- /src/games/ffx/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/common.hlsl -------------------------------------------------------------------------------- /src/games/ffx/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/shared.h -------------------------------------------------------------------------------- /src/games/ffx/ui_0x2BBD74AD.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/ui_0x2BBD74AD.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ffx/ui_0xC605FBD5.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffx/ui_0xC605FBD5.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/Copy_0x6CFFD968.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/Copy_0x6CFFD968.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/Copy_0xB0CE42B9.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/Copy_0xB0CE42B9.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/DICE.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/LUT_0x1F264D17.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/LUT_0x1F264D17.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/LUT_0x27EBC404.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/LUT_0x27EBC404.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/OnCopy.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/OnCopy.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/Tonemap_0x85E777EF.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/Tonemap_0x85E777EF.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/Vignette_0xCDC56365.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/Vignette_0xCDC56365.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/addon.cpp -------------------------------------------------------------------------------- /src/games/ffxiv/final_pixel_shader.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/final_pixel_shader.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/final_vertex_shader.vs_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/final_vertex_shader.vs_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxiv/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxiv/shared.h -------------------------------------------------------------------------------- /src/games/ffxv/RenoDRTSmoothClamp.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/RenoDRTSmoothClamp.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/addon.cpp -------------------------------------------------------------------------------- /src/games/ffxv/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/common.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/dithering_0x3F4687F4.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/dithering_0x3F4687F4.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/fmv_0x66EDB0A6.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/fmv_0x66EDB0A6.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/glare_0xBBC1036C.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/glare_0xBBC1036C.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/shared.h -------------------------------------------------------------------------------- /src/games/ffxv/tonemap2_0x18EF8C72.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/tonemap2_0x18EF8C72.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/tonemap_0x75DFE4B0.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/tonemap_0x75DFE4B0.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/ui_0x369A4C39.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/ui_0x369A4C39.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/ui_0xB4EADB83.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/ui_0xB4EADB83.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/ui_0xF2940481.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/ui_0xF2940481.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/uisdr_0x19D2AC4F.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/uisdr_0x19D2AC4F.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/uisdr_0x4E3026D1.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/uisdr_0x4E3026D1.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ffxv/uisdr_0xA12C8B65.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ffxv/uisdr_0xA12C8B65.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/fromsoft_engine/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fromsoft_engine/addon.cpp -------------------------------------------------------------------------------- /src/games/fromsoft_engine/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fromsoft_engine/common.hlsl -------------------------------------------------------------------------------- /src/games/fromsoft_engine/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/fromsoft_engine/shared.h -------------------------------------------------------------------------------- /src/games/gatesofhell/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gatesofhell/addon.cpp -------------------------------------------------------------------------------- /src/games/gatesofhell/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gatesofhell/shared.h -------------------------------------------------------------------------------- /src/games/generic/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/generic/addon.cpp -------------------------------------------------------------------------------- /src/games/generic/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/generic/shared.h -------------------------------------------------------------------------------- /src/games/gfl2/0x15EB4AF2.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gfl2/0x15EB4AF2.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gfl2/0x20133A8B.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gfl2/0x20133A8B.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gfl2/0x55396C7C.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gfl2/0x55396C7C.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gfl2/0x82BAB1D5.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gfl2/0x82BAB1D5.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gfl2/0xA1661D35.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gfl2/0xA1661D35.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gfl2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gfl2/addon.cpp -------------------------------------------------------------------------------- /src/games/gfl2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gfl2/shared.h -------------------------------------------------------------------------------- /src/games/ghostwiretokyo/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ghostwiretokyo/addon.cpp -------------------------------------------------------------------------------- /src/games/ghostwiretokyo/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ghostwiretokyo/common.hlsli -------------------------------------------------------------------------------- /src/games/ghostwiretokyo/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ghostwiretokyo/shared.h -------------------------------------------------------------------------------- /src/games/gomechaball/UI_0x6A0916CC.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gomechaball/UI_0x6A0916CC.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gomechaball/UI_0xBF5F6486.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gomechaball/UI_0xBF5F6486.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gomechaball/UI_0xD832F5CE.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gomechaball/UI_0xD832F5CE.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/gomechaball/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gomechaball/addon.cpp -------------------------------------------------------------------------------- /src/games/gomechaball/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gomechaball/shared.h -------------------------------------------------------------------------------- /src/games/gow2018/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gow2018/addon.cpp -------------------------------------------------------------------------------- /src/games/gow2018/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gow2018/common.hlsli -------------------------------------------------------------------------------- /src/games/gow2018/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gow2018/shared.h -------------------------------------------------------------------------------- /src/games/gowragnarok/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gowragnarok/addon.cpp -------------------------------------------------------------------------------- /src/games/gowragnarok/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gowragnarok/common.hlsli -------------------------------------------------------------------------------- /src/games/gowragnarok/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gowragnarok/shared.h -------------------------------------------------------------------------------- /src/games/greedfall/LUT_0x5EB8FCF2.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/greedfall/LUT_0x5EB8FCF2.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/greedfall/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/greedfall/addon.cpp -------------------------------------------------------------------------------- /src/games/greedfall/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/greedfall/common.hlsl -------------------------------------------------------------------------------- /src/games/greedfall/last_0x457E22C2.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/greedfall/last_0x457E22C2.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/greedfall/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/greedfall/shared.h -------------------------------------------------------------------------------- /src/games/grimdawn/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/grimdawn/addon.cpp -------------------------------------------------------------------------------- /src/games/grimdawn/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/grimdawn/common.hlsl -------------------------------------------------------------------------------- /src/games/grimdawn/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/grimdawn/shared.h -------------------------------------------------------------------------------- /src/games/gtav-enhanced/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gtav-enhanced/addon.cpp -------------------------------------------------------------------------------- /src/games/gtav-enhanced/composite/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gtav-enhanced/composite/common.hlsli -------------------------------------------------------------------------------- /src/games/gtav-enhanced/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/gtav-enhanced/shared.h -------------------------------------------------------------------------------- /src/games/hades/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hades/addon.cpp -------------------------------------------------------------------------------- /src/games/hades/blit2d_0x7F6D6130.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hades/blit2d_0x7F6D6130.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/hades/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hades/shared.h -------------------------------------------------------------------------------- /src/games/hades2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hades2/addon.cpp -------------------------------------------------------------------------------- /src/games/hades2/bloom2_0x2A1E53CE.ps_6_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hades2/bloom2_0x2A1E53CE.ps_6_0.hlsl -------------------------------------------------------------------------------- /src/games/hades2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hades2/shared.h -------------------------------------------------------------------------------- /src/games/haste/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/haste/addon.cpp -------------------------------------------------------------------------------- /src/games/haste/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/haste/common.hlsl -------------------------------------------------------------------------------- /src/games/haste/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/haste/shared.h -------------------------------------------------------------------------------- /src/games/haste/speed_0xBC91F40D.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/haste/speed_0xBC91F40D.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/haste/uber2_0xF47A06A5.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/haste/uber2_0xF47A06A5.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/haste/uber3_0x769A74FB.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/haste/uber3_0x769A74FB.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/haste/uber_0xEF7C8F91.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/haste/uber_0xEF7C8F91.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/hatintime/0xDBFD3C81.ps_3_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hatintime/0xDBFD3C81.ps_3_0.hlsl -------------------------------------------------------------------------------- /src/games/hatintime/0xE9ADC9F0.ps_3_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hatintime/0xE9ADC9F0.ps_3_0.hlsl -------------------------------------------------------------------------------- /src/games/hatintime/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hatintime/addon.cpp -------------------------------------------------------------------------------- /src/games/hatintime/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hatintime/shared.h -------------------------------------------------------------------------------- /src/games/hellblade2/00_final_0xF8FDC1FD.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hellblade2/00_final_0xF8FDC1FD.hlsl -------------------------------------------------------------------------------- /src/games/hitmanwoa/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hitmanwoa/addon.cpp -------------------------------------------------------------------------------- /src/games/hitmanwoa/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hitmanwoa/common.hlsli -------------------------------------------------------------------------------- /src/games/hitmanwoa/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hitmanwoa/shared.h -------------------------------------------------------------------------------- /src/games/hollowcocoon/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hollowcocoon/addon.cpp -------------------------------------------------------------------------------- /src/games/hollowcocoon/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hollowcocoon/common.hlsl -------------------------------------------------------------------------------- /src/games/hollowcocoon/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hollowcocoon/shared.h -------------------------------------------------------------------------------- /src/games/hollowknight-silksong/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hollowknight-silksong/addon.cpp -------------------------------------------------------------------------------- /src/games/hollowknight-silksong/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hollowknight-silksong/shared.h -------------------------------------------------------------------------------- /src/games/hollowknight/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hollowknight/addon.cpp -------------------------------------------------------------------------------- /src/games/hollowknight/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/hollowknight/shared.h -------------------------------------------------------------------------------- /src/games/honkai-starrail/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/honkai-starrail/DICE.hlsl -------------------------------------------------------------------------------- /src/games/honkai-starrail/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/honkai-starrail/addon.cpp -------------------------------------------------------------------------------- /src/games/honkai-starrail/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/honkai-starrail/common.hlsl -------------------------------------------------------------------------------- /src/games/honkai-starrail/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/honkai-starrail/shared.h -------------------------------------------------------------------------------- /src/games/honkai-starrail/tonemap.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/honkai-starrail/tonemap.hlsli -------------------------------------------------------------------------------- /src/games/horizonfw/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/horizonfw/addon.cpp -------------------------------------------------------------------------------- /src/games/horizonfw/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/horizonfw/shared.h -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x3AF8585D.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x3AF8585D.comp.glsl -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x3AF8585D.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x3AF8585D.comp.spv -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x808B7411.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x808B7411.comp.glsl -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x808B7411.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x808B7411.comp.spv -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x8EF24715.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x8EF24715.comp.glsl -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x8EF24715.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x8EF24715.comp.spv -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x94CF25A1.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x94CF25A1.comp.glsl -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x94CF25A1.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x94CF25A1.comp.spv -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x9E8B52A6.comp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x9E8B52A6.comp.glsl -------------------------------------------------------------------------------- /src/games/indygreatcircle/0x9E8B52A6.comp.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/0x9E8B52A6.comp.spv -------------------------------------------------------------------------------- /src/games/indygreatcircle/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/addon.cpp -------------------------------------------------------------------------------- /src/games/indygreatcircle/include/common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/indygreatcircle/include/common.glsl -------------------------------------------------------------------------------- /src/games/jedisurvivor/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/jedisurvivor/addon.cpp -------------------------------------------------------------------------------- /src/games/jedisurvivor/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/jedisurvivor/common.hlsl -------------------------------------------------------------------------------- /src/games/jedisurvivor/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/jedisurvivor/shared.h -------------------------------------------------------------------------------- /src/games/journey/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/journey/addon.cpp -------------------------------------------------------------------------------- /src/games/journey/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/journey/common.hlsl -------------------------------------------------------------------------------- /src/games/journey/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/journey/shared.h -------------------------------------------------------------------------------- /src/games/justcause4/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/justcause4/addon.cpp -------------------------------------------------------------------------------- /src/games/justcause4/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/justcause4/shared.h -------------------------------------------------------------------------------- /src/games/justcause4/xx_0x82BED845.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/justcause4/xx_0x82BED845.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/karmathedarkworld/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/karmathedarkworld/addon.cpp -------------------------------------------------------------------------------- /src/games/karmathedarkworld/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/karmathedarkworld/common.hlsl -------------------------------------------------------------------------------- /src/games/karmathedarkworld/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/karmathedarkworld/shared.h -------------------------------------------------------------------------------- /src/games/kingdomcome2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/kingdomcome2/addon.cpp -------------------------------------------------------------------------------- /src/games/kingdomcome2/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/kingdomcome2/common.hlsl -------------------------------------------------------------------------------- /src/games/kingdomcome2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/kingdomcome2/shared.h -------------------------------------------------------------------------------- /src/games/koarr/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/koarr/addon.cpp -------------------------------------------------------------------------------- /src/games/koarr/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/koarr/common.hlsl -------------------------------------------------------------------------------- /src/games/koarr/fxaa_0x8159D8EB.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/koarr/fxaa_0x8159D8EB.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/koarr/rsui1_0xE76323E6.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/koarr/rsui1_0xE76323E6.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/koarr/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/koarr/shared.h -------------------------------------------------------------------------------- /src/games/koarr/videos_0x138CBA83.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/koarr/videos_0x138CBA83.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/kunitsugami/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/kunitsugami/addon.cpp -------------------------------------------------------------------------------- /src/games/kunitsugami/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/kunitsugami/common.hlsl -------------------------------------------------------------------------------- /src/games/kunitsugami/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/kunitsugami/shared.h -------------------------------------------------------------------------------- /src/games/lanoire/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lanoire/addon.cpp -------------------------------------------------------------------------------- /src/games/lanoire/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lanoire/shared.h -------------------------------------------------------------------------------- /src/games/lastepoch/TAA_0xB5EA3401.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lastepoch/TAA_0xB5EA3401.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lastepoch/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lastepoch/addon.cpp -------------------------------------------------------------------------------- /src/games/lastepoch/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lastepoch/common.hlsl -------------------------------------------------------------------------------- /src/games/lastepoch/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lastepoch/shared.h -------------------------------------------------------------------------------- /src/games/lostinrandom/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lostinrandom/addon.cpp -------------------------------------------------------------------------------- /src/games/lostinrandom/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lostinrandom/common.hlsl -------------------------------------------------------------------------------- /src/games/lostinrandom/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lostinrandom/shared.h -------------------------------------------------------------------------------- /src/games/lostplanet/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lostplanet/addon.cpp -------------------------------------------------------------------------------- /src/games/lostplanet/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lostplanet/shared.h -------------------------------------------------------------------------------- /src/games/lunacid/0x200666E0.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/0x200666E0.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/0x20133A8B.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/0x20133A8B.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/0x44C64DF9.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/0x44C64DF9.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/0x49E25D6C.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/0x49E25D6C.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/0xF486AD70.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/0xF486AD70.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/addon.cpp -------------------------------------------------------------------------------- /src/games/lunacid/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/common.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/gamma_0x8B95E491.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/gamma_0x8B95E491.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/shared.h -------------------------------------------------------------------------------- /src/games/lunacid/vhs1_0x8C536A08.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/vhs1_0x8C536A08.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lunacid/vhs2_0xAD4AD0B9.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lunacid/vhs2_0xAD4AD0B9.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lysfanga/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lysfanga/addon.cpp -------------------------------------------------------------------------------- /src/games/lysfanga/bloom_0x5FDD841D.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lysfanga/bloom_0x5FDD841D.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lysfanga/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lysfanga/common.hlsl -------------------------------------------------------------------------------- /src/games/lysfanga/final_0x20133A8B.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lysfanga/final_0x20133A8B.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/lysfanga/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/lysfanga/shared.h -------------------------------------------------------------------------------- /src/games/madmax/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/madmax/addon.cpp -------------------------------------------------------------------------------- /src/games/madmax/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/madmax/common.hlsl -------------------------------------------------------------------------------- /src/games/madmax/fog_0x11F149D6.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/madmax/fog_0x11F149D6.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/madmax/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/madmax/shared.h -------------------------------------------------------------------------------- /src/games/madmax/ui_0x611D905A.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/madmax/ui_0x611D905A.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/mafiade/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mafiade/addon.cpp -------------------------------------------------------------------------------- /src/games/mafiade/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mafiade/common.hlsl -------------------------------------------------------------------------------- /src/games/mafiade/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mafiade/shared.h -------------------------------------------------------------------------------- /src/games/masseffectle/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/masseffectle/addon.cpp -------------------------------------------------------------------------------- /src/games/masseffectle/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/masseffectle/shared.h -------------------------------------------------------------------------------- /src/games/maxpayne3/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/maxpayne3/addon.cpp -------------------------------------------------------------------------------- /src/games/maxpayne3/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/maxpayne3/common.hlsl -------------------------------------------------------------------------------- /src/games/maxpayne3/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/maxpayne3/shared.h -------------------------------------------------------------------------------- /src/games/metaphorrefantazio/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metaphorrefantazio/addon.cpp -------------------------------------------------------------------------------- /src/games/metaphorrefantazio/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metaphorrefantazio/shared.h -------------------------------------------------------------------------------- /src/games/metaphorrefantazio/tonemapper.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metaphorrefantazio/tonemapper.hlsl -------------------------------------------------------------------------------- /src/games/metro/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metro/addon.cpp -------------------------------------------------------------------------------- /src/games/metro/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metro/common.hlsl -------------------------------------------------------------------------------- /src/games/metro/fxaa_0x386FCE67.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metro/fxaa_0x386FCE67.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/metro/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metro/shared.h -------------------------------------------------------------------------------- /src/games/metro/uber1_0x5C867D7E.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metro/uber1_0x5C867D7E.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/metro/uber2_0xA453ADB1.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/metro/uber2_0xA453ADB1.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/mgsdelta/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mgsdelta/addon.cpp -------------------------------------------------------------------------------- /src/games/mgsdelta/composite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mgsdelta/composite.hlsl -------------------------------------------------------------------------------- /src/games/mgsdelta/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mgsdelta/shared.h -------------------------------------------------------------------------------- /src/games/mhwilds/UI_0x8286B55C.cs_6_6.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhwilds/UI_0x8286B55C.cs_6_6.hlsl -------------------------------------------------------------------------------- /src/games/mhwilds/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhwilds/addon.cpp -------------------------------------------------------------------------------- /src/games/mhwilds/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhwilds/common.hlsl -------------------------------------------------------------------------------- /src/games/mhwilds/lilium_rcas.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhwilds/lilium_rcas.hlsl -------------------------------------------------------------------------------- /src/games/mhwilds/output.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhwilds/output.hlsl -------------------------------------------------------------------------------- /src/games/mhwilds/postprocess.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhwilds/postprocess.hlsl -------------------------------------------------------------------------------- /src/games/mhwilds/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhwilds/shared.h -------------------------------------------------------------------------------- /src/games/mhworld/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhworld/addon.cpp -------------------------------------------------------------------------------- /src/games/mhworld/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhworld/common.hlsl -------------------------------------------------------------------------------- /src/games/mhworld/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/mhworld/shared.h -------------------------------------------------------------------------------- /src/games/nfs16/UI_0x314165B5.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfs16/UI_0x314165B5.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/nfs16/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfs16/addon.cpp -------------------------------------------------------------------------------- /src/games/nfs16/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfs16/common.hlsl -------------------------------------------------------------------------------- /src/games/nfs16/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfs16/shared.h -------------------------------------------------------------------------------- /src/games/nfstr/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfstr/addon.cpp -------------------------------------------------------------------------------- /src/games/nfstr/shaders/!common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfstr/shaders/!common.hlsl -------------------------------------------------------------------------------- /src/games/nfstr/shaders/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfstr/shaders/template.txt -------------------------------------------------------------------------------- /src/games/nfstr/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/nfstr/shared.h -------------------------------------------------------------------------------- /src/games/ngsigma/UI_0x73DE4134.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ngsigma/UI_0x73DE4134.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/ngsigma/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ngsigma/addon.cpp -------------------------------------------------------------------------------- /src/games/ngsigma/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ngsigma/shared.h -------------------------------------------------------------------------------- /src/games/ngsigma2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ngsigma2/addon.cpp -------------------------------------------------------------------------------- /src/games/ngsigma2/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ngsigma2/common.hlsl -------------------------------------------------------------------------------- /src/games/ngsigma2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ngsigma2/shared.h -------------------------------------------------------------------------------- /src/games/oblivionremastered/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/oblivionremastered/addon.cpp -------------------------------------------------------------------------------- /src/games/oblivionremastered/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/oblivionremastered/common.hlsl -------------------------------------------------------------------------------- /src/games/oblivionremastered/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/oblivionremastered/shared.h -------------------------------------------------------------------------------- /src/games/opus-eos/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/opus-eos/addon.cpp -------------------------------------------------------------------------------- /src/games/opus-eos/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/opus-eos/common.hlsl -------------------------------------------------------------------------------- /src/games/opus-eos/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/opus-eos/shared.h -------------------------------------------------------------------------------- /src/games/ori1definitive/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori1definitive/addon.cpp -------------------------------------------------------------------------------- /src/games/ori1definitive/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori1definitive/common.hlsl -------------------------------------------------------------------------------- /src/games/ori1definitive/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori1definitive/shared.h -------------------------------------------------------------------------------- /src/games/ori2/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori2/DICE.hlsl -------------------------------------------------------------------------------- /src/games/ori2/RenoDRTSmoothClamp.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori2/RenoDRTSmoothClamp.hlsl -------------------------------------------------------------------------------- /src/games/ori2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori2/addon.cpp -------------------------------------------------------------------------------- /src/games/ori2/hueHelper.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori2/hueHelper.hlsl -------------------------------------------------------------------------------- /src/games/ori2/itm_0x9D323EA3.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori2/itm_0x9D323EA3.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/ori2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/ori2/shared.h -------------------------------------------------------------------------------- /src/games/osirisnewdawn/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/osirisnewdawn/addon.cpp -------------------------------------------------------------------------------- /src/games/osirisnewdawn/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/osirisnewdawn/common.hlsl -------------------------------------------------------------------------------- /src/games/osirisnewdawn/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/osirisnewdawn/shared.h -------------------------------------------------------------------------------- /src/games/outerwilds/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/outerwilds/DICE.hlsl -------------------------------------------------------------------------------- /src/games/outerwilds/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/outerwilds/addon.cpp -------------------------------------------------------------------------------- /src/games/outerwilds/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/outerwilds/common.hlsl -------------------------------------------------------------------------------- /src/games/outerwilds/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/outerwilds/shared.h -------------------------------------------------------------------------------- /src/games/outerworlds2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/outerworlds2/addon.cpp -------------------------------------------------------------------------------- /src/games/outerworlds2/composite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/outerworlds2/composite.hlsl -------------------------------------------------------------------------------- /src/games/outerworlds2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/outerworlds2/shared.h -------------------------------------------------------------------------------- /src/games/p4g/DrawFX_0x331C4ACF.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p4g/DrawFX_0x331C4ACF.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p4g/Output_0x73C09769.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p4g/Output_0x73C09769.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p4g/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p4g/addon.cpp -------------------------------------------------------------------------------- /src/games/p4g/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p4g/shared.h -------------------------------------------------------------------------------- /src/games/p5r/04_copy_0xB6E26AC7.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/04_copy_0xB6E26AC7.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/09_hdr_0x0D85D1F6.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/09_hdr_0x0D85D1F6.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0x060C3E22.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0x060C3E22.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0x23A501DC.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0x23A501DC.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0x2944B564.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0x2944B564.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0x4016ED43.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0x4016ED43.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0x5C4DD977.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0x5C4DD977.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0x7C0751EF.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0x7C0751EF.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0xAB823647.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0xAB823647.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0xCC71BBE3.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0xCC71BBE3.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0xD434C03A.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0xD434C03A.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0xE126DD24.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0xE126DD24.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/0x_ui_0xEBBDB212.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/0x_ui_0xEBBDB212.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/addon.cpp -------------------------------------------------------------------------------- /src/games/p5r/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/shared.h -------------------------------------------------------------------------------- /src/games/p5r/video_0xC6D14699.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r/video_0xC6D14699.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/p5r_archive/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r_archive/addon.cpp -------------------------------------------------------------------------------- /src/games/p5r_archive/p5r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/p5r_archive/p5r.h -------------------------------------------------------------------------------- /src/games/partyanimals/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/partyanimals/addon.cpp -------------------------------------------------------------------------------- /src/games/partyanimals/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/partyanimals/common.hlsl -------------------------------------------------------------------------------- /src/games/partyanimals/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/partyanimals/shared.h -------------------------------------------------------------------------------- /src/games/poptlc/Color.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/Color.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/ColorGradingLUT.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/ColorGradingLUT.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/DICE.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/LUT.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/LUT.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/LUTShared.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/LUTShared.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/LUT_0xFA1EB89D.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/LUT_0xFA1EB89D.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/Math.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/Math.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/Oklab.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/Oklab.hlsl -------------------------------------------------------------------------------- /src/games/poptlc/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/addon.cpp -------------------------------------------------------------------------------- /src/games/poptlc/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/poptlc/shared.h -------------------------------------------------------------------------------- /src/games/projectidiva_megamix/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/projectidiva_megamix/addon.cpp -------------------------------------------------------------------------------- /src/games/projectidiva_megamix/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/projectidiva_megamix/shared.h -------------------------------------------------------------------------------- /src/games/rdr1/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/rdr1/addon.cpp -------------------------------------------------------------------------------- /src/games/rdr1/hueHelper.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/rdr1/hueHelper.hlsl -------------------------------------------------------------------------------- /src/games/rdr1/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/rdr1/shared.h -------------------------------------------------------------------------------- /src/games/rdr1/tonemaphelper.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/rdr1/tonemaphelper.hlsl -------------------------------------------------------------------------------- /src/games/re4remake/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/re4remake/addon.cpp -------------------------------------------------------------------------------- /src/games/re4remake/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/re4remake/common.hlsli -------------------------------------------------------------------------------- /src/games/re4remake/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/re4remake/shared.h -------------------------------------------------------------------------------- /src/games/re7-2r-3r-village/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/re7-2r-3r-village/addon.cpp -------------------------------------------------------------------------------- /src/games/re7-2r-3r-village/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/re7-2r-3r-village/common.hlsli -------------------------------------------------------------------------------- /src/games/re7-2r-3r-village/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/re7-2r-3r-village/shared.h -------------------------------------------------------------------------------- /src/games/reka/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/reka/addon.cpp -------------------------------------------------------------------------------- /src/games/reka/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/reka/common.hlsl -------------------------------------------------------------------------------- /src/games/reka/final_0x20133A8B.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/reka/final_0x20133A8B.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/reka/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/reka/shared.h -------------------------------------------------------------------------------- /src/games/rememberme/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/rememberme/addon.cpp -------------------------------------------------------------------------------- /src/games/rememberme/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/rememberme/common.hlsl -------------------------------------------------------------------------------- /src/games/rememberme/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/rememberme/shared.h -------------------------------------------------------------------------------- /src/games/reveil/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/reveil/addon.cpp -------------------------------------------------------------------------------- /src/games/reveil/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/reveil/common.hlsl -------------------------------------------------------------------------------- /src/games/reveil/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/reveil/shared.h -------------------------------------------------------------------------------- /src/games/risetombraider/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/risetombraider/addon.cpp -------------------------------------------------------------------------------- /src/games/risetombraider/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/risetombraider/shared.h -------------------------------------------------------------------------------- /src/games/roadhogengine/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/roadhogengine/addon.cpp -------------------------------------------------------------------------------- /src/games/roadhogengine/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/roadhogengine/common.hlsl -------------------------------------------------------------------------------- /src/games/roadhogengine/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/roadhogengine/shared.h -------------------------------------------------------------------------------- /src/games/robocop/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/robocop/addon.cpp -------------------------------------------------------------------------------- /src/games/robocop/common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/robocop/common.hlsli -------------------------------------------------------------------------------- /src/games/robocop/composite/composite.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/robocop/composite/composite.hlsli -------------------------------------------------------------------------------- /src/games/robocop/postfx/postfx.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/robocop/postfx/postfx.hlsli -------------------------------------------------------------------------------- /src/games/robocop/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/robocop/shared.h -------------------------------------------------------------------------------- /src/games/scblacklist/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/scblacklist/addon.cpp -------------------------------------------------------------------------------- /src/games/scblacklist/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/scblacklist/common.hlsl -------------------------------------------------------------------------------- /src/games/scblacklist/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/scblacklist/shared.h -------------------------------------------------------------------------------- /src/games/seaofstars/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/seaofstars/addon.cpp -------------------------------------------------------------------------------- /src/games/seaofstars/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/seaofstars/shared.h -------------------------------------------------------------------------------- /src/games/seaofthieves/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/seaofthieves/addon.cpp -------------------------------------------------------------------------------- /src/games/seaofthieves/seaofthieves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/seaofthieves/seaofthieves.h -------------------------------------------------------------------------------- /src/games/shadowofwar/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowofwar/addon.cpp -------------------------------------------------------------------------------- /src/games/shadowofwar/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowofwar/shared.h -------------------------------------------------------------------------------- /src/games/shadowofwar/tonemap.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowofwar/tonemap.hlsli -------------------------------------------------------------------------------- /src/games/shadowsawakening/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowsawakening/addon.cpp -------------------------------------------------------------------------------- /src/games/shadowsawakening/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowsawakening/common.hlsl -------------------------------------------------------------------------------- /src/games/shadowsawakening/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowsawakening/shared.h -------------------------------------------------------------------------------- /src/games/shadowtombraider/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowtombraider/addon.cpp -------------------------------------------------------------------------------- /src/games/shadowtombraider/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowtombraider/common.hlsl -------------------------------------------------------------------------------- /src/games/shadowtombraider/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shadowtombraider/shared.h -------------------------------------------------------------------------------- /src/games/shinobiaov/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shinobiaov/addon.cpp -------------------------------------------------------------------------------- /src/games/shinobiaov/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shinobiaov/common.hlsl -------------------------------------------------------------------------------- /src/games/shinobiaov/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/shinobiaov/shared.h -------------------------------------------------------------------------------- /src/games/silenthill2remake/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/silenthill2remake/addon.cpp -------------------------------------------------------------------------------- /src/games/silenthill2remake/common.hlsli: -------------------------------------------------------------------------------- 1 | #include "./shared.h" -------------------------------------------------------------------------------- /src/games/silenthill2remake/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/silenthill2remake/shared.h -------------------------------------------------------------------------------- /src/games/silenthillf/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/silenthillf/addon.cpp -------------------------------------------------------------------------------- /src/games/silenthillf/common.hlsli: -------------------------------------------------------------------------------- 1 | #include "./shared.h" -------------------------------------------------------------------------------- /src/games/silenthillf/output/output.hlsli: -------------------------------------------------------------------------------- 1 | #include "../common.hlsli" -------------------------------------------------------------------------------- /src/games/silenthillf/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/silenthillf/shared.h -------------------------------------------------------------------------------- /src/games/silenthillf/swapchainproxy.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/silenthillf/swapchainproxy.hlsli -------------------------------------------------------------------------------- /src/games/sleepingdogs/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sleepingdogs/addon.cpp -------------------------------------------------------------------------------- /src/games/sleepingdogs/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sleepingdogs/shared.h -------------------------------------------------------------------------------- /src/games/sleepingdogsde/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sleepingdogsde/addon.cpp -------------------------------------------------------------------------------- /src/games/sleepingdogsde/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sleepingdogsde/shared.h -------------------------------------------------------------------------------- /src/games/slimerancher2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/slimerancher2/addon.cpp -------------------------------------------------------------------------------- /src/games/slimerancher2/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/slimerancher2/common.hlsl -------------------------------------------------------------------------------- /src/games/slimerancher2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/slimerancher2/shared.h -------------------------------------------------------------------------------- /src/games/smashbros-ultimate/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/smashbros-ultimate/addon.cpp -------------------------------------------------------------------------------- /src/games/smashbros-ultimate/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/smashbros-ultimate/shared.h -------------------------------------------------------------------------------- /src/games/sniperelite4/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sniperelite4/addon.cpp -------------------------------------------------------------------------------- /src/games/sniperelite4/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sniperelite4/common.hlsl -------------------------------------------------------------------------------- /src/games/sniperelite4/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sniperelite4/shared.h -------------------------------------------------------------------------------- /src/games/sonicgenerations/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sonicgenerations/addon.cpp -------------------------------------------------------------------------------- /src/games/sonicgenerations/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sonicgenerations/shared.h -------------------------------------------------------------------------------- /src/games/spacemarine2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spacemarine2/addon.cpp -------------------------------------------------------------------------------- /src/games/spacemarine2/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spacemarine2/common.hlsl -------------------------------------------------------------------------------- /src/games/spacemarine2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spacemarine2/shared.h -------------------------------------------------------------------------------- /src/games/spark3/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spark3/addon.cpp -------------------------------------------------------------------------------- /src/games/spark3/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spark3/shared.h -------------------------------------------------------------------------------- /src/games/spark3/uber_0xF9B0D779.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spark3/uber_0xF9B0D779.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/specopstheline/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/specopstheline/addon.cpp -------------------------------------------------------------------------------- /src/games/specopstheline/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/specopstheline/common.hlsl -------------------------------------------------------------------------------- /src/games/specopstheline/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/specopstheline/shared.h -------------------------------------------------------------------------------- /src/games/spiderman_2018_miles/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spiderman_2018_miles/addon.cpp -------------------------------------------------------------------------------- /src/games/spiderman_2018_miles/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spiderman_2018_miles/common.hlsl -------------------------------------------------------------------------------- /src/games/spiderman_2018_miles/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/spiderman_2018_miles/shared.h -------------------------------------------------------------------------------- /src/games/stalker2/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/stalker2/addon.cpp -------------------------------------------------------------------------------- /src/games/stalker2/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/stalker2/common.hlsl -------------------------------------------------------------------------------- /src/games/stalker2/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/stalker2/shared.h -------------------------------------------------------------------------------- /src/games/starfield/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/starfield/addon.cpp -------------------------------------------------------------------------------- /src/games/starfield/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/starfield/common.hlsl -------------------------------------------------------------------------------- /src/games/starfield/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/starfield/shared.h -------------------------------------------------------------------------------- /src/games/streetfighter6/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/streetfighter6/addon.cpp -------------------------------------------------------------------------------- /src/games/streetfighter6/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/streetfighter6/common.hlsl -------------------------------------------------------------------------------- /src/games/streetfighter6/lilium_cas.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/streetfighter6/lilium_cas.hlsl -------------------------------------------------------------------------------- /src/games/streetfighter6/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/streetfighter6/shared.h -------------------------------------------------------------------------------- /src/games/sunsetoverdrive/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sunsetoverdrive/addon.cpp -------------------------------------------------------------------------------- /src/games/sunsetoverdrive/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sunsetoverdrive/common.hlsl -------------------------------------------------------------------------------- /src/games/sunsetoverdrive/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/sunsetoverdrive/shared.h -------------------------------------------------------------------------------- /src/games/tacticalbreachwizards/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tacticalbreachwizards/DICE.hlsl -------------------------------------------------------------------------------- /src/games/tacticalbreachwizards/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tacticalbreachwizards/addon.cpp -------------------------------------------------------------------------------- /src/games/tacticalbreachwizards/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tacticalbreachwizards/common.hlsl -------------------------------------------------------------------------------- /src/games/tacticalbreachwizards/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tacticalbreachwizards/shared.h -------------------------------------------------------------------------------- /src/games/talesofgracesf/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/talesofgracesf/addon.cpp -------------------------------------------------------------------------------- /src/games/talesofgracesf/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/talesofgracesf/shared.h -------------------------------------------------------------------------------- /src/games/tekken8/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tekken8/addon.cpp -------------------------------------------------------------------------------- /src/games/tekken8/outputs/composite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tekken8/outputs/composite.hlsl -------------------------------------------------------------------------------- /src/games/tekken8/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tekken8/shared.h -------------------------------------------------------------------------------- /src/games/tempopo/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tempopo/addon.cpp -------------------------------------------------------------------------------- /src/games/tempopo/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tempopo/shared.h -------------------------------------------------------------------------------- /src/games/thehundredline/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thehundredline/addon.cpp -------------------------------------------------------------------------------- /src/games/thehundredline/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thehundredline/shared.h -------------------------------------------------------------------------------- /src/games/thesurge/UI_0x75061D6A.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thesurge/UI_0x75061D6A.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/thesurge/UI_0x9E859B1F.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thesurge/UI_0x9E859B1F.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/thesurge/UI_0xB24F9988.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thesurge/UI_0xB24F9988.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/thesurge/UI_0xEC416938.ps_5_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thesurge/UI_0xEC416938.ps_5_0.hlsl -------------------------------------------------------------------------------- /src/games/thesurge/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thesurge/addon.cpp -------------------------------------------------------------------------------- /src/games/thesurge/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thesurge/common.hlsl -------------------------------------------------------------------------------- /src/games/thesurge/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thesurge/shared.h -------------------------------------------------------------------------------- /src/games/thetownoflight/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thetownoflight/addon.cpp -------------------------------------------------------------------------------- /src/games/thetownoflight/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thetownoflight/common.hlsl -------------------------------------------------------------------------------- /src/games/thetownoflight/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thetownoflight/shared.h -------------------------------------------------------------------------------- /src/games/thewitcher3/0x572AAB77.ps_6_3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitcher3/0x572AAB77.ps_6_3.hlsl -------------------------------------------------------------------------------- /src/games/thewitcher3/0x7BB02B41.ps_6_3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitcher3/0x7BB02B41.ps_6_3.hlsl -------------------------------------------------------------------------------- /src/games/thewitcher3/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitcher3/addon.cpp -------------------------------------------------------------------------------- /src/games/thewitcher3/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitcher3/common.hlsl -------------------------------------------------------------------------------- /src/games/thewitcher3/lilium_rcas.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitcher3/lilium_rcas.hlsl -------------------------------------------------------------------------------- /src/games/thewitcher3/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitcher3/shared.h -------------------------------------------------------------------------------- /src/games/thewitcher3/uncharted2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitcher3/uncharted2.hlsl -------------------------------------------------------------------------------- /src/games/thewitness/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitness/addon.cpp -------------------------------------------------------------------------------- /src/games/thewitness/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/thewitness/shared.h -------------------------------------------------------------------------------- /src/games/tombraider2013/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tombraider2013/addon.cpp -------------------------------------------------------------------------------- /src/games/tombraider2013/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tombraider2013/shared.h -------------------------------------------------------------------------------- /src/games/tombraider2013de/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tombraider2013de/addon.cpp -------------------------------------------------------------------------------- /src/games/tombraider2013de/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tombraider2013de/shared.h -------------------------------------------------------------------------------- /src/games/trackmania/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/trackmania/addon.cpp -------------------------------------------------------------------------------- /src/games/trackmania/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/trackmania/common.hlsl -------------------------------------------------------------------------------- /src/games/trackmania/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/trackmania/shared.h -------------------------------------------------------------------------------- /src/games/tunic/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tunic/addon.cpp -------------------------------------------------------------------------------- /src/games/tunic/glow_0x4AC5CC39.ps_4_0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tunic/glow_0x4AC5CC39.ps_4_0.hlsl -------------------------------------------------------------------------------- /src/games/tunic/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/tunic/shared.h -------------------------------------------------------------------------------- /src/games/unchartedlotc/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/unchartedlotc/addon.cpp -------------------------------------------------------------------------------- /src/games/unchartedlotc/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/unchartedlotc/shared.h -------------------------------------------------------------------------------- /src/games/unrealengine/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/unrealengine/addon.cpp -------------------------------------------------------------------------------- /src/games/unrealengine/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/unrealengine/common.hlsl -------------------------------------------------------------------------------- /src/games/unrealengine/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/unrealengine/shared.h -------------------------------------------------------------------------------- /src/games/valheim/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/valheim/addon.cpp -------------------------------------------------------------------------------- /src/games/valheim/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/valheim/common.hlsl -------------------------------------------------------------------------------- /src/games/valheim/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/valheim/shared.h -------------------------------------------------------------------------------- /src/games/vrising/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/vrising/addon.cpp -------------------------------------------------------------------------------- /src/games/vrising/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/vrising/common.hlsl -------------------------------------------------------------------------------- /src/games/vrising/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/vrising/shared.h -------------------------------------------------------------------------------- /src/games/watchdogs/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/watchdogs/addon.cpp -------------------------------------------------------------------------------- /src/games/watchdogs/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/watchdogs/common.hlsl -------------------------------------------------------------------------------- /src/games/watchdogs/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/watchdogs/shared.h -------------------------------------------------------------------------------- /src/games/windblown/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/windblown/addon.cpp -------------------------------------------------------------------------------- /src/games/windblown/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/windblown/common.hlsl -------------------------------------------------------------------------------- /src/games/windblown/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/windblown/shared.h -------------------------------------------------------------------------------- /src/games/wuchang/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wuchang/addon.cpp -------------------------------------------------------------------------------- /src/games/wuchang/composite/composite.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wuchang/composite/composite.hlsli -------------------------------------------------------------------------------- /src/games/wuchang/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wuchang/shared.h -------------------------------------------------------------------------------- /src/games/wuchangsdr/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wuchangsdr/addon.cpp -------------------------------------------------------------------------------- /src/games/wuchangsdr/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wuchangsdr/shared.h -------------------------------------------------------------------------------- /src/games/wutheringwaves/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wutheringwaves/addon.cpp -------------------------------------------------------------------------------- /src/games/wutheringwaves/common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wutheringwaves/common.hlsl -------------------------------------------------------------------------------- /src/games/wutheringwaves/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/wutheringwaves/shared.h -------------------------------------------------------------------------------- /src/games/xfextremeformula/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/xfextremeformula/addon.cpp -------------------------------------------------------------------------------- /src/games/xfextremeformula/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/xfextremeformula/shared.h -------------------------------------------------------------------------------- /src/games/zelda-eow/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/zelda-eow/addon.cpp -------------------------------------------------------------------------------- /src/games/zelda-eow/common.slangi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/zelda-eow/common.slangi -------------------------------------------------------------------------------- /src/games/zelda-eow/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/zelda-eow/shared.h -------------------------------------------------------------------------------- /src/games/zelda-eow/ui_0x445CD3C6.frag.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/games/zelda-eow/ui_0x445CD3C6.frag.slang -------------------------------------------------------------------------------- /src/mods/shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/mods/shader.hpp -------------------------------------------------------------------------------- /src/mods/swapchain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/mods/swapchain.hpp -------------------------------------------------------------------------------- /src/reshadefx/RenoDXHelper.addonfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/reshadefx/RenoDXHelper.addonfx -------------------------------------------------------------------------------- /src/reshadefx/ShortFuse22ForSRGB.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/reshadefx/ShortFuse22ForSRGB.fx -------------------------------------------------------------------------------- /src/reshadefx/ShortFuseACES.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/reshadefx/ShortFuseACES.fx -------------------------------------------------------------------------------- /src/reshadefx/ShortFuseBT1886For22.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/reshadefx/ShortFuseBT1886For22.fx -------------------------------------------------------------------------------- /src/reshadefx/ShortFuseBT1886ForSRGB.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/reshadefx/ShortFuseBT1886ForSRGB.fx -------------------------------------------------------------------------------- /src/reshadefx/ShortFuseFilmGrain.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/reshadefx/ShortFuseFilmGrain.fx -------------------------------------------------------------------------------- /src/reshadefx/ShortFuseRenoDRT.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/reshadefx/ShortFuseRenoDRT.fx -------------------------------------------------------------------------------- /src/shaders/DICE.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/DICE.hlsl -------------------------------------------------------------------------------- /src/shaders/aces.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/aces.hlsl -------------------------------------------------------------------------------- /src/shaders/color.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/color.hlsl -------------------------------------------------------------------------------- /src/shaders/color_convert.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/color_convert.hlsl -------------------------------------------------------------------------------- /src/shaders/colorcorrect.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/colorcorrect.hlsl -------------------------------------------------------------------------------- /src/shaders/colorgrade.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/colorgrade.hlsl -------------------------------------------------------------------------------- /src/shaders/cross.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/cross.hlsl -------------------------------------------------------------------------------- /src/shaders/debug.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/debug.hlsl -------------------------------------------------------------------------------- /src/shaders/deprecated.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/deprecated.hlsl -------------------------------------------------------------------------------- /src/shaders/draw.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/draw.hlsl -------------------------------------------------------------------------------- /src/shaders/effects.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/effects.hlsl -------------------------------------------------------------------------------- /src/shaders/frostbite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/frostbite.hlsl -------------------------------------------------------------------------------- /src/shaders/inverse_tonemap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/inverse_tonemap.hlsl -------------------------------------------------------------------------------- /src/shaders/lut.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/lut.hlsl -------------------------------------------------------------------------------- /src/shaders/math.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/math.hlsl -------------------------------------------------------------------------------- /src/shaders/random.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/random.hlsl -------------------------------------------------------------------------------- /src/shaders/reinhard.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/reinhard.hlsl -------------------------------------------------------------------------------- /src/shaders/reno_drt.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/reno_drt.hlsl -------------------------------------------------------------------------------- /src/shaders/renodx.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/renodx.hlsl -------------------------------------------------------------------------------- /src/shaders/tonemap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/tonemap.hlsl -------------------------------------------------------------------------------- /src/shaders/tonemap/daniele.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/tonemap/daniele.hlsl -------------------------------------------------------------------------------- /src/shaders/tonemap/hermite_spline.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/shaders/tonemap/hermite_spline.hlsl -------------------------------------------------------------------------------- /src/templates/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/templates/settings.hpp -------------------------------------------------------------------------------- /src/utils/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/bitwise.hpp -------------------------------------------------------------------------------- /src/utils/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/constants.hpp -------------------------------------------------------------------------------- /src/utils/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/data.hpp -------------------------------------------------------------------------------- /src/utils/date.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/date.hpp -------------------------------------------------------------------------------- /src/utils/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/descriptor.hpp -------------------------------------------------------------------------------- /src/utils/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/device.hpp -------------------------------------------------------------------------------- /src/utils/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/directx.hpp -------------------------------------------------------------------------------- /src/utils/float16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/float16.hpp -------------------------------------------------------------------------------- /src/utils/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/format.hpp -------------------------------------------------------------------------------- /src/utils/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/hash.hpp -------------------------------------------------------------------------------- /src/utils/ini_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/ini_file.hpp -------------------------------------------------------------------------------- /src/utils/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/log.hpp -------------------------------------------------------------------------------- /src/utils/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/mutex.hpp -------------------------------------------------------------------------------- /src/utils/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/path.hpp -------------------------------------------------------------------------------- /src/utils/pipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/pipeline.hpp -------------------------------------------------------------------------------- /src/utils/pipeline_layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/pipeline_layout.hpp -------------------------------------------------------------------------------- /src/utils/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/platform.hpp -------------------------------------------------------------------------------- /src/utils/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/random.hpp -------------------------------------------------------------------------------- /src/utils/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/resource.hpp -------------------------------------------------------------------------------- /src/utils/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/settings.hpp -------------------------------------------------------------------------------- /src/utils/shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/shader.hpp -------------------------------------------------------------------------------- /src/utils/shader_compiler_directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/shader_compiler_directx.hpp -------------------------------------------------------------------------------- /src/utils/shader_compiler_watcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/shader_compiler_watcher.hpp -------------------------------------------------------------------------------- /src/utils/shader_decompiler_dxc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/shader_decompiler_dxc.hpp -------------------------------------------------------------------------------- /src/utils/shader_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/shader_dump.hpp -------------------------------------------------------------------------------- /src/utils/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/state.hpp -------------------------------------------------------------------------------- /src/utils/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/string_view.hpp -------------------------------------------------------------------------------- /src/utils/swapchain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/swapchain.hpp -------------------------------------------------------------------------------- /src/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/trace.hpp -------------------------------------------------------------------------------- /src/utils/vtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clshortfuse/renodx/HEAD/src/utils/vtable.hpp --------------------------------------------------------------------------------