Replace all glFinish() with glFlush().

This is supposed to fix gradual slowdown of Blender interface on ATI cards.
This commit is contained in:
2004-06-16 11:34:45 +00:00
parent ddec3db89d
commit 4091851043
13 changed files with 49 additions and 48 deletions

View File

@@ -89,7 +89,7 @@ void glutil_draw_front_xor_line(int x0, int y0, int x1, int y1)
{
glDrawBuffer(GL_FRONT);
sdrawXORline(x0, y0, x1, y1);
glFinish();
glFlush();
glDrawBuffer(GL_BACK);
}