From 37e8c1d7e4ac922dfd94276edf9690efb4ce9aba Mon Sep 17 00:00:00 2001 From: Ryan Holtz Date: Tue, 31 May 2011 02:04:28 +0000 Subject: Fixing some scanline-alignment issues. --- hlsl/phosphor.fx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hlsl/phosphor.fx') diff --git a/hlsl/phosphor.fx b/hlsl/phosphor.fx index 6fa136b9eb2..aba572743ba 100644 --- a/hlsl/phosphor.fx +++ b/hlsl/phosphor.fx @@ -79,7 +79,7 @@ VS_OUTPUT vs_main(VS_INPUT Input) float2 InvTexSize = float2(1.0f / TargetWidth, 1.0f / TargetHeight); Output.TexCoord = Input.TexCoord + 0.5f * InvTexSize; - Output.PrevCoord = Output.TexCoord + 0.5f * InvTexSize; + Output.PrevCoord = Input.TexCoord + 0.5f * InvTexSize; return Output; } -- cgit v1.2.3