diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-06-20 11:32:22 -0600 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-09-21 22:13:55 -0700 |
commit | 394c1d1c53074f82d2664f655f948f8966f46b9d (patch) | |
tree | 7e2c0cbb8b60fcf6ec98a4863b6c8b21e5b7d3bf /src/mesa/main/glheader.h | |
parent | bb00f09f1bfb195206ffac6481d83ecf57fd37ce (diff) |
mesa: initial support for fixed-pt vertex arrays
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index 602d6f5694..e155f5eb9f 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -161,6 +161,11 @@ #include "GL/glext.h" +#ifndef GL_FIXED +#define GL_FIXED 0x140C +#endif + + #if !defined(CAPI) && defined(WIN32) && !defined(BUILD_FOR_SNAP) #define CAPI _cdecl #endif |