diff options
author | Gareth Hughes <[email protected]> | 2001-01-06 22:46:13 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-01-06 22:46:13 +0000 |
commit | ba8f6172bdfb44594537a304225b54152584d701 (patch) | |
tree | fc9ad8032c50f030e7ca6a6f9388d7928b019c4d /include/GL/gl.h | |
parent | c85164605031cd64afbc57ca5ab1331377af887b (diff) |
Implementation of GL_EXT_texture_env_dot3.
Diffstat (limited to 'include/GL/gl.h')
-rw-r--r-- | include/GL/gl.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 11a16dfc925..f261a672b44 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,4 +1,4 @@ -/* $Id: gl.h,v 1.49 2000/12/09 20:36:18 brianp Exp $ */ +/* $Id: gl.h,v 1.50 2001/01/06 22:46:13 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -2228,6 +2228,19 @@ GLAPI void GLAPIENTRY glResizeBuffersMESA( void ); #endif /* GL_MESA_resize_bufffers */ + +/* + * 220. GL_EXT_texture_env_dot3 + */ +#ifndef GL_EXT_texture_env_dot3 +#define GL_EXT_texture_env_dot3 1 + +#define GL_DOT3_RGB_EXT 0x8740 +#define GL_DOT3_RGBA_EXT 0x8741 + +#endif /* GL_EXT_texture_env_dot3 */ + + #else /* GL_GLEXT_LEGACY */ #include <GL/glext.h> |