From ae9fbbe44df5e8e4469d69f075a03ce8e7579286 Mon Sep 17 00:00:00 2001 From: Ryan Holtz Date: Mon, 23 May 2011 01:53:35 +0000 Subject: NTSC fixes, nw --- hlsl/yiq_encode.fx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hlsl/yiq_encode.fx') diff --git a/hlsl/yiq_encode.fx b/hlsl/yiq_encode.fx index b4188e8b1fc..d89097e3032 100644 --- a/hlsl/yiq_encode.fx +++ b/hlsl/yiq_encode.fx @@ -107,7 +107,7 @@ float4 ps_main(PS_INPUT Input) : COLOR float2 Coord2 = (Input.Coord2.xy + float2(0.50f / RawWidth, 0.0f)) * Scaler; float2 Coord3 = (Input.Coord3.xy + float2(0.75f / RawWidth, 0.0f)) * Scaler; - float W = WValue; + float W = WValue * 2.0f; float T0 = Coord0.x + AValue * Coord0.y + BValue; float T1 = Coord1.x + AValue * Coord1.y + BValue; float T2 = Coord2.x + AValue * Coord2.y + BValue; -- cgit v1.2.3