added glutGetProcAddress in DMesaGLUT
authorDaniel Borca <dborca@users.sourceforge.net>
Mon, 2 Feb 2004 07:47:23 +0000 (07:47 +0000)
committerDaniel Borca <dborca@users.sourceforge.net>
Mon, 2 Feb 2004 07:47:23 +0000 (07:47 +0000)
docs/README.DJ
src/glut/dos/extens.c

index 15bff62177cbd88b6e1b44bee3e977d1181a8e5a..ed7f8c858badd80033c47352fb8e1883a9ffa062 100644 (file)
@@ -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
 
 
index bc6cfe0f5ff01b20899284282e3f956beda6548b..a77eb910b30ba1bfe13f054219164c779e6862c7 100644 (file)
@@ -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);
+}