mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
LightingShaderGen: Always calculate lighting for both color channels
Cel-damage uses the color from the lighting stage of the vertex pipeline as texture coordinates, but sets numColorChans to zero. We now calculate the colors in all cases, but override the color before writing it from the vertex shader if numColorChans is set to a lower value.
This commit is contained in:
@ -171,6 +171,19 @@ ShaderCode GenVertexShader(APIType ApiType, const ShaderHostConfig& host_config,
|
||||
if (numTexgen > 0)
|
||||
GenVertexShaderTexGens(ApiType, numTexgen, out);
|
||||
|
||||
out.Write("if (xfmem_numColorChans == 0u) {\n");
|
||||
out.Write(" if ((components & %uu) != 0u)\n", VB_HAS_COL0);
|
||||
out.Write(" o.colors_0 = rawcolor0;\n");
|
||||
out.Write(" else\n");
|
||||
out.Write(" o.colors_1 = float4(1.0, 1.0, 1.0, 1.0);\n");
|
||||
out.Write("}\n");
|
||||
out.Write("if (xfmem_numColorChans < 2u) {\n");
|
||||
out.Write(" if ((components & %uu) != 0u)\n", VB_HAS_COL1);
|
||||
out.Write(" o.colors_0 = rawcolor1;\n");
|
||||
out.Write(" else\n");
|
||||
out.Write(" o.colors_1 = float4(1.0, 1.0, 1.0, 1.0);\n");
|
||||
out.Write("}\n");
|
||||
|
||||
// clipPos/w needs to be done in pixel shader, not here
|
||||
out.Write("o.clipPos = o.pos;\n");
|
||||
|
||||
|
Reference in New Issue
Block a user