mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00: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:
parent
18c1bf19ca
commit
efb9759862
7 changed files with 38 additions and 29 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue