Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2003-06-11 19:40:25 +0400
committerTon Roosendaal <ton@blender.org>2003-06-11 19:40:25 +0400
commit2c6da7a2dbf2ca6d03217040b695b816d7574f5e (patch)
treedd47b026eeb20209cf2240423e0127608f525638 /source/blender/src/editsima.c
parentef4c05bd6ccc00ba4295513d8962dd15975b221c (diff)
- OSX bug: selecting vertices in imagewindow didnt draw in frontbuf visibly
added a glFlush
Diffstat (limited to 'source/blender/src/editsima.c')
-rw-r--r--source/blender/src/editsima.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editsima.c b/source/blender/src/editsima.c
index 88fb87499d9..a743dd2fd5f 100644
--- a/source/blender/src/editsima.c
+++ b/source/blender/src/editsima.c
@@ -719,6 +719,7 @@ void mouse_select_sima(void)
glDrawBuffer(GL_FRONT);
draw_tfaces();
+ glFlush(); // at OSX, a flush pops up the "frontbuffer" (it does a swap, doh!)
glDrawBuffer(GL_BACK);
std_rmouse_transform(transform_tface_uv);