=== modified file 'plugins/firepaint/src/firepaint.cpp' --- plugins/firepaint/src/firepaint.cpp 2012-12-01 17:46:23 +0000 +++ plugins/firepaint/src/firepaint.cpp 2012-12-28 06:14:58 +0000 @@ -260,6 +260,8 @@ } } + glEnableClientState (GL_VERTEX_ARRAY); + glEnableClientState (GL_TEXTURE_COORD_ARRAY); glEnableClientState (GL_COLOR_ARRAY); glTexCoordPointer (2, GL_FLOAT, 2 * sizeof (GLfloat), coords_cache.cache); @@ -280,6 +282,8 @@ glColorPointer (4, GL_FLOAT, 4 * sizeof (GLfloat), colors_cache.cache); glDrawArrays (GL_QUADS, 0, numActive); glDisableClientState (GL_COLOR_ARRAY); + glDisableClientState (GL_TEXTURE_COORD_ARRAY); + glDisableClientState (GL_VERTEX_ARRAY); glPopMatrix (); glColor4usv (defaultColor);