PixelShaderGen: Change the "colors" and "kcolors" uniforms to be integers.

This commit is contained in:
Tony Wasserka
2013-10-10 20:26:41 +02:00
parent df94e62350
commit ec60acac3a
3 changed files with 47 additions and 47 deletions

View File

@ -11,8 +11,8 @@ typedef s32 int4[4];
struct PixelShaderConstants
{
float4 colors[4];
float4 kcolors[4];
int4 colors[4];
int4 kcolors[4];
float4 alpha;
float4 texdims[8];
float4 zbias[2];