summaryrefslogtreecommitdiff
path: root/src/glu/mesa
diff options
context:
space:
mode:
Diffstat (limited to 'src/glu/mesa')
-rw-r--r--src/glu/mesa/glu.c13
-rw-r--r--src/glu/mesa/tess.c17
2 files changed, 22 insertions, 8 deletions
diff --git a/src/glu/mesa/glu.c b/src/glu/mesa/glu.c
index 7d2f74cfb2..d649ca86e1 100644
--- a/src/glu/mesa/glu.c
+++ b/src/glu/mesa/glu.c
@@ -1,4 +1,4 @@
-/* $Id: glu.c,v 1.11 1999/09/17 01:00:38 brianp Exp $ */
+/* $Id: glu.c,v 1.12 1999/09/17 03:07:28 tjump Exp $ */
/*
* Mesa 3-D graphics library
@@ -23,6 +23,9 @@
/*
* $Log: glu.c,v $
+ * Revision 1.12 1999/09/17 03:07:28 tjump
+ * Win32 build req't updates
+ *
* Revision 1.11 1999/09/17 01:00:38 brianp
* fixed typo
*
@@ -371,9 +374,13 @@ const GLubyte* GLAPIENTRY gluGetString( GLenum name )
#ifdef __cplusplus
/* for BeOS R4.5 */
-void GLAPIENTRY (*gluGetProcAddressEXT(const GLubyte *procName))(...)
+gluProcAddress GLAPIENTRY gluGetProcAddressEXT(const GLubyte *procName)
#else
+<<<<<<< glu.c
+gluProcAddress GLAPIENTRY gluGetProcAddressEXT(const GLubyte *procName)
+=======
void GLAPIENTRY (*gluGetProcAddressEXT(const GLubyte *procName))()
+>>>>>>> 1.11
#endif
{
struct proc {
@@ -401,7 +408,7 @@ void GLAPIENTRY (*gluGetProcAddressEXT(const GLubyte *procName))()
for (i = 0; procTable[i].address; i++) {
if (strcmp((const char *) procName, procTable[i].name) == 0)
- return (void (*)()) procTable[i].address;
+ return (gluProcAddress) procTable[i].address;
}
return NULL;
diff --git a/src/glu/mesa/tess.c b/src/glu/mesa/tess.c
index 50d9ff2348..de5a4f3cc6 100644
--- a/src/glu/mesa/tess.c
+++ b/src/glu/mesa/tess.c
@@ -1,4 +1,4 @@
-/* $Id: tess.c,v 1.7 1999/09/16 06:41:42 gareth Exp $ */
+/* $Id: tess.c,v 1.8 1999/09/17 03:07:28 tjump Exp $ */
/*
* Mesa 3-D graphics library
@@ -26,6 +26,9 @@
/*
* $Log: tess.c,v $
+ * Revision 1.8 1999/09/17 03:07:28 tjump
+ * Win32 build req't updates
+ *
* Revision 1.7 1999/09/16 06:41:42 gareth
* Misc winding rule bug fixes.
*
@@ -578,20 +581,24 @@ void GLAPIENTRY gluEndPolygon( GLUtesselator *tobj )
*
* Internal error handler. Call the user-registered error callback.
*****************************************************************************/
-void tess_error_callback( GLUtesselator *tobj, GLenum errno, void *data )
+
+/* 2nd arg changed from 'errno' to 'errnum' since MSVC defines errnum as */
+/* a macro (of all things) and thus breaks the build -tjump */
+
+void tess_error_callback( GLUtesselator *tobj, GLenum errnum, void *data )
{
if ( tobj->error == GLU_NO_ERROR )
{
- tobj->error = errno;
+ tobj->error = errnum;
}
if ( tobj->callbacks.errorData != NULL )
{
- ( tobj->callbacks.errorData )( errno, data );
+ ( tobj->callbacks.errorData )( errnum, data );
}
else if ( tobj->callbacks.error != NULL )
{
- ( tobj->callbacks.error )( errno );
+ ( tobj->callbacks.error )( errnum );
}
}