From 9165ac5a679762fe9a4a23a506149610b31bc6ed Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Tue, 15 Jan 2013 10:48:01 -0600 Subject: [PATCH] Fix clipPos not being declared in DX backends. --- Source/Core/VideoCommon/Src/PixelShaderGen.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/PixelShaderGen.cpp b/Source/Core/VideoCommon/Src/PixelShaderGen.cpp index 7969fcc86d..cd6903af39 100644 --- a/Source/Core/VideoCommon/Src/PixelShaderGen.cpp +++ b/Source/Core/VideoCommon/Src/PixelShaderGen.cpp @@ -716,6 +716,7 @@ const char *GeneratePixelShaderCode(DSTALPHA_MODE dstAlphaMode, API_TYPE ApiType WRITE(p, ",\n in float4 clipPos : TEXCOORD%d", numTexgen); if(g_ActiveConfig.bEnablePixelLighting && g_ActiveConfig.backend_info.bSupportsPixelLighting) WRITE(p, ",\n in float4 Normal : TEXCOORD%d", numTexgen + 1); + WRITE(p, " ) {\n"); } else { @@ -730,8 +731,9 @@ const char *GeneratePixelShaderCode(DSTALPHA_MODE dstAlphaMode, API_TYPE ApiType for (unsigned int i = 0; i < xfregs.numTexGen.numTexGens; ++i) WRITE(p, ",\n in float%d uv%d : TEXCOORD%d", i < 4 ? 4 : 3 , i, i); } + WRITE(p, " ) {\n"); + WRITE(p, "\tfloat4 clipPos = float4(0.0f, 0.0f, 0.0f, 0.0f);"); } - WRITE(p, " ) {\n"); } int Pretest = AlphaPreTest();