summaryrefslogtreecommitdiff
path: root/src/mesa/main/colortab.h
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>1999-11-12 08:32:37 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>1999-11-12 08:32:37 +0000
commit5b974ed6a11638b6aab8bf79a0bc599b80557392 (patch)
treefc092c1238e50cb0d07e3735f9471095bc95815d /src/mesa/main/colortab.h
parente312cf26ea1ae0445926df20c43e80363d453cb5 (diff)
Workaround for the VMS 32 character maximum limit.
Diffstat (limited to 'src/mesa/main/colortab.h')
-rw-r--r--src/mesa/main/colortab.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/main/colortab.h b/src/mesa/main/colortab.h
index 406d3e7ff8..916ee34a36 100644
--- a/src/mesa/main/colortab.h
+++ b/src/mesa/main/colortab.h
@@ -1,4 +1,4 @@
-/* $Id: colortab.h,v 1.3 1999/11/11 17:50:04 brianp Exp $ */
+/* $Id: colortab.h,v 1.4 1999/11/12 08:32:37 joukj Exp $ */
/*
* Mesa 3-D graphics library
@@ -45,6 +45,11 @@ _mesa_ColorSubTableEXT( GLenum target, GLsizei start,
extern void
_mesa_GetColorTableEXT( GLenum target, GLenum format,
GLenum type, GLvoid *table );
+#ifdef VMS
+/* VMS does not support externals longer than 32 characters. */
+#define _mesa_GetColorTableParameterfvEXT VMS_GCTParameterfvEXT
+#define _mesa_GetColorTableParameterivEXT VMS_GCTParameterivEXT
+#endif
extern void
_mesa_GetColorTableParameterfvEXT( GLenum target, GLenum pname, GLfloat *params );