From 12f6db9e81498f35236490faf28d728c3ae34e33 Mon Sep 17 00:00:00 2001 From: brimson Date: Sat, 21 May 2022 18:26:34 -0700 Subject: [PATCH] Update cMotionBlur.fx --- shaders/cMotionBlur.fx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shaders/cMotionBlur.fx b/shaders/cMotionBlur.fx index e4e8887..7afca5d 100644 --- a/shaders/cMotionBlur.fx +++ b/shaders/cMotionBlur.fx @@ -317,7 +317,7 @@ namespace Motion_Blur return normalize(Normal); } - void Normalize_Frame_PS(in float4 Position : SV_POSITION, float2 TexCoord : TEXCOORD, out float2 Color : SV_TARGET0) + void Normalize_Frame_PS(in float4 Position : SV_POSITION, in float2 TexCoord : TEXCOORD0, out float2 Color : SV_TARGET0) { Color = 0.0; if(_NormalMode) @@ -331,7 +331,7 @@ namespace Motion_Blur } } - void Blit_Frame_PS(in float4 Position : SV_POSITION, float2 TexCoord : TEXCOORD, out float4 OutputColor0 : SV_TARGET0) + void Blit_Frame_PS(in float4 Position : SV_POSITION, in float2 TexCoord : TEXCOORD0, out float4 OutputColor0 : SV_TARGET0) { OutputColor0 = tex2D(Shared_Resources_Motion_Blur::Sample_Common_0, TexCoord); } @@ -739,4 +739,4 @@ namespace Motion_Blur #endif } } -} \ No newline at end of file +}