summaryrefslogtreecommitdiff
path: root/progs/windml/uglteapot.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-09-10 19:21:13 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-09-10 19:21:13 +0000
commit306933046cdc70e20af7facea8bc8a975812787e (patch)
tree05c360b1c210159a76c602f1279c8d30db53325b /progs/windml/uglteapot.c
parent30230a9cd171128c34c55bd751242dbe07dc3a89 (diff)
WindML updates (Stephane Raimbault)
Diffstat (limited to 'progs/windml/uglteapot.c')
-rw-r--r--progs/windml/uglteapot.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/progs/windml/uglteapot.c b/progs/windml/uglteapot.c
index 26c766d834..651fe0990e 100644
--- a/progs/windml/uglteapot.c
+++ b/progs/windml/uglteapot.c
@@ -222,15 +222,15 @@ UGL_LOCAL void loopEvent(void)
}
}
-void windMLTeapot (void);
+void windMLTeapot (UGL_BOOL windMLMode);
void uglteapot (void)
{
taskSpawn ("tTeapot", 210, VX_FP_TASK, 100000, (FUNCPTR)windMLTeapot,
- 0,1,2,3,4,5,6,7,8,9);
+ UGL_FALSE,1,2,3,4,5,6,7,8,9);
}
-void windMLTeapot (void)
+void windMLTeapot (UGL_BOOL windMLMode)
{
UGL_INPUT_DEVICE_ID keyboardDevId;
GLsizei displayWidth, displayHeight;
@@ -252,7 +252,12 @@ void windMLTeapot (void)
qId = uglEventQCreate (eventServiceId, 100);
/* 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 ();