diff options
author | Kristian Høgsberg <[email protected]> | 2010-04-24 19:18:35 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-04-28 14:04:49 -0400 |
commit | 08fae07f5246052dccdd89689e27dc8820a24ff7 (patch) | |
tree | 6a4d1763cc93928fec9a6cb52e577b4efe3b147b /src/mesa/main/glheader.h | |
parent | 7aae8a592a299abd881372d3a2850375c2bb8884 (diff) |
mesa: Handle GL_TEXTURE_GEN_STR_OES in _mesa_Enable()
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index 7f01d9f39bd..6d423eacee8 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -85,11 +85,15 @@ typedef void *GLeglImageOES; #define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 #endif -/* GLES 2.0 token */ +/* GLES 2.0 tokens */ #ifndef GL_RGB565 #define GL_RGB565 0x8D62 #endif +#ifndef GL_TEXTURE_GEN_STR_OES +#define GL_TEXTURE_GEN_STR_OES 0x8D60 +#endif + /** * Special, internal token */ |