PixelShaderGen: Cleanup and clarify bump alpha combiner inputs.

This commit is contained in:
Tony Wasserka 2014-02-28 20:43:43 +01:00
parent 9a96a1d525
commit 6fcbda6752

View File

@ -150,8 +150,8 @@ static const char *tevRasTable[] =
"ERROR13", //2
"ERROR14", //3
"ERROR15", //4
"(int4(1,1,1,1) * alphabump)", // use bump alpha
"(int4(1,1,1,1) * (alphabump | (alphabump >> 5)))", //normalized
"(int4(1, 1, 1, 1) * alphabump)", // bump alpha (0..248)
"(int4(1, 1, 1, 1) * (alphabump | (alphabump >> 5)))", // normalized bump alpha (0..255)
"int4(0, 0, 0, 0)", // zero
};