diff options
author | Brian Paul <[email protected]> | 2001-09-10 19:21:13 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-09-10 19:21:13 +0000 |
commit | 306933046cdc70e20af7facea8bc8a975812787e (patch) | |
tree | 05c360b1c210159a76c602f1279c8d30db53325b /progs/windml/uglicotorus.c | |
parent | 30230a9cd171128c34c55bd751242dbe07dc3a89 (diff) |
WindML updates (Stephane Raimbault)
Diffstat (limited to 'progs/windml/uglicotorus.c')
-rw-r--r-- | progs/windml/uglicotorus.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/progs/windml/uglicotorus.c b/progs/windml/uglicotorus.c index 46226f1e82c..c09b6d1b520 100644 --- a/progs/windml/uglicotorus.c +++ b/progs/windml/uglicotorus.c @@ -246,15 +246,15 @@ UGL_LOCAL void loopEvent(void) } } -void windMLIcoTorus (void); +void windMLIcoTorus (UGL_BOOL windMLMode); void uglicotorus (void) { taskSpawn ("tIcoTorus", 210, VX_FP_TASK, 100000, (FUNCPTR)windMLIcoTorus, - 0,1,2,3,4,5,6,7,8,9); + UGL_FALSE,1,2,3,4,5,6,7,8,9); } -void windMLIcoTorus (void) +void windMLIcoTorus (UGL_BOOL windMLMode) { GLsizei width, height; UGL_INPUT_DEVICE_ID keyboardDevId; @@ -279,8 +279,12 @@ void windMLIcoTorus (void) } /* Double buffering */ - umc = uglMesaCreateNewContext (UGL_MESA_DOUBLE, NULL); - + if (windMLMode) + umc = uglMesaCreateNewContext(UGL_MESA_DOUBLE + | UGL_MESA_WINDML_EXCLUSIVE, NULL); + else + umc = uglMesaCreateNewContext(UGL_MESA_DOUBLE, NULL); + if (umc == NULL) { uglDeinitialize (); |