=== modified file 'plugins/showmouse/src/showmouse.cpp' --- plugins/showmouse/src/showmouse.cpp 2012-12-01 17:46:23 +0000 +++ plugins/showmouse/src/showmouse.cpp 2012-12-28 07:35:06 +0000 @@ -263,6 +263,8 @@ } } + glEnableClientState (GL_VERTEX_ARRAY); + glEnableClientState (GL_TEXTURE_COORD_ARRAY); glEnableClientState (GL_COLOR_ARRAY); glTexCoordPointer (2, GL_FLOAT, 2 * sizeof (GLfloat), coords_cache.cache); @@ -283,6 +285,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);