Fix VertexShaderGenerator Command line for Gpu last generation on ios (hwXform)

This commit is contained in:
jeid3 2013-05-28 17:53:43 +02:00
parent 40877cf813
commit fc38cfe798

View File

@ -218,7 +218,7 @@ void GenerateVertexShader(int prim, char *buffer) {
WRITE(p, "uniform mediump mat4 u_bone[%i];\n", numBones);
#else
for (int i = 0; i < numBones; i++) {
WRITE(p, "uniform mediump mat4 u_bone%i;\n", i);
WRITE(p, "uniform mat4 u_bone%i;\n", i);
}
#endif
}