Index: src_plugins/hid_gtk2_gl/gtkhid-gl.c =================================================================== --- src_plugins/hid_gtk2_gl/gtkhid-gl.c (revision 8761) +++ src_plugins/hid_gtk2_gl/gtkhid-gl.c (revision 8762) @@ -331,7 +331,7 @@ case HID_MASK_AFTER: /* Drawing operations as masked to areas where the stencil buffer is '0' */ glColorMask(1, 1, 1, 1); /* Enable drawing of r, g, b & a */ - glStencilFunc(GL_NOTEQUAL, 1, stencil_bit); /* Draw only where our bit of the stencil buffer is clear */ + glStencilFunc(GL_NOTEQUAL, 0, stencil_bit); /* Draw only where our bit of the stencil buffer is clear */ glStencilOp(GL_KEEP, GL_KEEP, GL_KEEP); /* Stencil buffer read only */ break;