From 05409537b02b85c4ab0b477ab96b6448c589928f Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Sun, 28 Aug 2022 22:31:01 -0500 Subject: [PATCH] eroneous convertsion leftover --- .../core/postFX/scripts/HDR/HDR_finalPass.hlsl | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Templates/BaseGame/game/core/postFX/scripts/HDR/HDR_finalPass.hlsl b/Templates/BaseGame/game/core/postFX/scripts/HDR/HDR_finalPass.hlsl index 7f4316b10..bf5b2e174 100644 --- a/Templates/BaseGame/game/core/postFX/scripts/HDR/HDR_finalPass.hlsl +++ b/Templates/BaseGame/game/core/postFX/scripts/HDR/HDR_finalPass.hlsl @@ -51,20 +51,6 @@ uniform float logContrast; uniform float brightnessValue; uniform float saturationValue; uniform float3 colorFilter; - -vec3 ACESFitted(vec3 x, float w) -{ - x = tMul(ACESInputMat, x); - - // Apply RRT and ODT - x = RRTAndODTFit(x, w); - - x = tMul(ACESOutputMat, x); - - // Clamp to [0, 1] - return saturate(x); - -} float3 Tonemap(float3 x) {