diff options
author | Brian Paul <[email protected]> | 2002-12-18 15:06:36 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-12-18 15:06:36 +0000 |
commit | 03516d9efa76720be2b0b8677573a5f93845c2da (patch) | |
tree | e6cda83d0b5f863aaa15ab5bca8c7637fc71d2b4 /src/glut/dos/globals.c | |
parent | c0fc0d4e5f5c246fc2459348a3d114b232d0c545 (diff) |
DOS updates from Daniel Borca.
Diffstat (limited to 'src/glut/dos/globals.c')
-rw-r--r-- | src/glut/dos/globals.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/glut/dos/globals.c b/src/glut/dos/globals.c index 342cf3d08f6..c264992cc75 100644 --- a/src/glut/dos/globals.c +++ b/src/glut/dos/globals.c @@ -19,7 +19,7 @@ */
/*
- * DOS/DJGPP glut driver v1.0 for Mesa 4.0
+ * DOS/DJGPP glut driver v1.3 for Mesa 5.0
*
* Copyright (C) 2002 - Borca Daniel
* Email : [email protected]
@@ -30,10 +30,12 @@ #include "GL/glut.h"
#include "internal.h"
-GLenum g_display_mode = 0;
+GLuint g_display_mode = 0;
GLuint g_width = DEFAULT_WIDTH;
GLuint g_height = DEFAULT_HEIGHT;
-GLint g_mouse = GL_FALSE;
+GLuint g_bpp = DEFAULT_BPP;
+GLuint g_refresh = 0;
+GLuint g_mouse = 0;
GLboolean g_redisplay = GL_FALSE;
GLint g_xpos = 0;
GLint g_ypos = 0;
|