Fixed: Wrong size for 32 bits indices array

--HG--
branch : develop
hg/compatibility-develop
kervala 7 years ago
parent 56d17e2729
commit f790af1d57

@ -635,7 +635,7 @@ bool CDriverGL::renderRawQuads(CMaterial& mat, uint32 startIndex, uint32 numQuad
nlerror("not available in OpenGL ES 1.0, only use 16 bits indices"); nlerror("not available in OpenGL ES 1.0, only use 16 bits indices");
#else #else
// indices fits on 32 bits // indices fits on 32 bits
GLint indices[QUAD_BATCH_SIZE]; GLint indices[QUAD_BATCH_SIZE * 6];
GLint *curr = indices; GLint *curr = indices;
GLint *end = indices + 6 * numQuadsToDraw; GLint *end = indices + 6 * numQuadsToDraw;
uint32 vertexIndex = currIndex; uint32 vertexIndex = currIndex;

Loading…
Cancel
Save