use OSMESA_* enums for OSMesaCreateContext instead of GL_*.
diff --git a/progs/demos/osdemo.c b/progs/demos/osdemo.c
index b43950b..73fb367 100644
--- a/progs/demos/osdemo.c
+++ b/progs/demos/osdemo.c
@@ -1,4 +1,4 @@
-/* $Id: osdemo.c,v 1.6 2001/07/13 20:09:18 brianp Exp $ */
+/* $Id: osdemo.c,v 1.7 2001/09/24 15:29:27 kschultz Exp $ */
 
 /*
  * Demo of off-screen Mesa rendering
@@ -228,9 +228,9 @@
    /* Create an RGBA-mode context */
 #if OSMESA_MAJOR_VERSION * 100 + OSMESA_MINOR_VERSION >= 305
    /* specify Z, stencil, accum sizes */
-   OSMesaContext ctx = OSMesaCreateContextExt( GL_RGBA, 16, 0, 0, NULL );
+   OSMesaContext ctx = OSMesaCreateContextExt( OSMESA_RGBA, 16, 0, 0, NULL );
 #else
-   OSMesaContext ctx = OSMesaCreateContext( GL_RGBA, NULL );
+   OSMesaContext ctx = OSMesaCreateContext( OSMESA_RGBA, NULL );
 #endif
    if (!ctx) {
       printf("OSMesaCreateContext failed!\n");