diff options
author | Brian Paul <[email protected]> | 2001-10-17 13:31:07 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-10-17 13:31:07 +0000 |
commit | e11f089f821ea90754d8cbe56278eba4cf5665f4 (patch) | |
tree | a4a6e49a2fc7f250328ccfdf7bd62ce4be9b3e65 /src/mesa/main/glheader.h | |
parent | 470d3cd4a2c49a36babfc66933140d57535d724f (diff) |
added GL_ARB_texture_mirrored_repeat
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index 41c47420409..ed3f76ba6b4 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -1,4 +1,4 @@ -/* $Id: glheader.h,v 1.22 2001/07/16 15:54:23 brianp Exp $ */ +/* $Id: glheader.h,v 1.23 2001/10/17 13:31:07 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -260,4 +260,12 @@ typedef struct tagPIXELFORMATDESCRIPTOR PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESC typedef union { GLfloat f; GLint i; } fi_type; +#ifndef GL_MIRRORED_REPEAT_ARB +#define GL_MIRRORED_REPEAT_ARB 0x8370 +#endif +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_ARB_texture_mirrored_repeat 1 +#endif + + #endif /* GLHEADER_H */ |