diff options
Diffstat (limited to 'system/shaders/convolution-6x6_d3d.fx')
-rw-r--r-- | system/shaders/convolution-6x6_d3d.fx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/shaders/convolution-6x6_d3d.fx b/system/shaders/convolution-6x6_d3d.fx index 9a3eb62b3e..253c225a3b 100644 --- a/system/shaders/convolution-6x6_d3d.fx +++ b/system/shaders/convolution-6x6_d3d.fx @@ -75,7 +75,7 @@ float4 CONVOLUTION6x6(in float2 TextureUV : TEXCOORD0) : SV_TARGET float3 ypos1 = xystart.y + g_StepXY.y * float3(0.0, 1.0, 2.0); float3 ypos2 = xystart.y + g_StepXY.y * float3(3.0, 4.0, 5.0); - float3 rgb = + float3 rgb = getLine(ypos1.x, xpos1, xpos2, linetaps1, linetaps2) * columntaps1.r + getLine(ypos1.y, xpos1, xpos2, linetaps1, linetaps2) * columntaps2.r + getLine(ypos1.z, xpos1, xpos2, linetaps1, linetaps2) * columntaps1.g + |