diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2013-01-15 10:48:01 -0600 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2013-01-15 10:48:01 -0600 |
| commit | 9165ac5a679762fe9a4a23a506149610b31bc6ed (patch) | |
| tree | 6b931bfe8a876fae5eb34f9c957b6fd5cf369377 /Source/Core/VideoCommon | |
| parent | 687d74e6c20efa3b66c839365b2431c2a4caf9e4 (diff) | |
Fix clipPos not being declared in DX backends.
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/Src/PixelShaderGen.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
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(); |
