From a4a57094360f8788c448de0d89ba248d36b67f21 Mon Sep 17 00:00:00 2001 From: papadanku <115061077+papadanku@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:14:48 -0700 Subject: [PATCH] Update cDLAA.fx --- shaders/cDLAA.fx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shaders/cDLAA.fx b/shaders/cDLAA.fx index 060f408..4327723 100644 --- a/shaders/cDLAA.fx +++ b/shaders/cDLAA.fx @@ -61,7 +61,7 @@ float4 PS_Prefilter(CShade_VS2PS_Quad Input) : SV_TARGET0 return float4(Center, EdgesLuma); } -float4 PS_AntiAliasing(CShade_VS2PS_Quad Input) : SV_TARGET0 +float4 PS_DLAA(CShade_VS2PS_Quad Input) : SV_TARGET0 { float2 Delta = fwidth(Input.Tex0); @@ -210,11 +210,11 @@ technique CShade_DLAA < ui_tooltip = "Directionally Localized Anti-Aliasing (DLA RenderTarget0 = TempTex0_RGBA8; } - pass AntiAliasing + pass DLAA { CBLEND_CREATE_STATES() VertexShader = CShade_VS_Quad; - PixelShader = PS_AntiAliasing; + PixelShader = PS_DLAA; } }