fix warnings (thanks to Aaron!)

This commit is contained in:
=
2015-09-10 17:52:41 -07:00
parent 81087c3b4a
commit 3d10338ed5
13 changed files with 15 additions and 27 deletions

View File

@@ -1409,10 +1409,10 @@ void GLInstancingRenderer::renderSceneInternal(int renderMode)
b3Matrix4x4Mul(depthProjectionMatrix,depthModelViewMatrix,depthMVP);
GLfloat biasMatrix[4][4]={
0.5, 0.0, 0.0, 0.0,
0.0, 0.5, 0.0, 0.0,
0.0, 0.0, 0.5, 0.0,
0.5, 0.5, 0.5, 1.0
{ 0.5, 0.0, 0.0, 0.0 },
{ 0.0, 0.5, 0.0, 0.0 },
{ 0.0, 0.0, 0.5, 0.0 },
{ 0.5, 0.5, 0.5, 1.0 }
};
GLfloat depthBiasMVP[4][4];