summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Borca <dborca@users.sourceforge.net>2004-02-02 07:47:23 +0000
committerDaniel Borca <dborca@users.sourceforge.net>2004-02-02 07:47:23 +0000
commit61bc62cc40764b58ac8bceb48a579534841fca93 (patch)
tree1e29cbe48d2e9ab4475f2c5c305b8eed10434574
parent4c7883e402dd0733a56870f4517e455e46523cf4 (diff)
added glutGetProcAddress in DMesaGLUT
-rw-r--r--docs/README.DJ2
-rw-r--r--src/glut/dos/extens.c13
2 files changed, 12 insertions, 3 deletions
diff --git a/docs/README.DJ b/docs/README.DJ
index 15bff62177..ed7f8c858b 100644
--- a/docs/README.DJ
+++ b/docs/README.DJ
@@ -248,7 +248,7 @@ v1.5 (jan-2004)
x more changes to the 3dfx driver
v1.6 (???-2004)
- + added DMesaGetProcAddress
+ + added DMesaGetProcAddress and glutGetProcAddress
! fixed a horrible bug in VGA initialization routine
diff --git a/src/glut/dos/extens.c b/src/glut/dos/extens.c
index bc6cfe0f5f..a77eb910b3 100644
--- a/src/glut/dos/extens.c
+++ b/src/glut/dos/extens.c
@@ -19,7 +19,7 @@
*/
/*
- * DOS/DJGPP glut driver v1.3 for Mesa
+ * DOS/DJGPP glut driver v1.4 for Mesa
*
* Copyright (C) 2002 - Borca Daniel
* Email : dborca@yahoo.com
@@ -29,8 +29,9 @@
#include <string.h>
-#include "GL/glut.h"
+#include <GL/glut.h>
+#include "GL/dmesa.h"
int APIENTRY glutExtensionSupported (const char *extension)
@@ -61,3 +62,11 @@ int APIENTRY glutExtensionSupported (const char *extension)
}
}
}
+
+
+void * APIENTRY
+glutGetProcAddress (const char *procName)
+{
+ /* TODO - handle glut namespace */
+ return DMesaGetProcAddress(procName);
+}