diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-09-21 16:47:09 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-09-21 16:47:09 +0000 |
commit | c62aeed003cc20b189d71bc53256419e0d630aaf (patch) | |
tree | f2552fe0227852ef8955f2798077ba6b54ac861c /include | |
parent | f022463aa6541200c8e958474930ee938c521390 (diff) |
merge updates from 4.0.4
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/gl.h | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 4b3a411909..bced617f15 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,4 +1,4 @@ -/* $Id: gl.h,v 1.70 2002/09/19 16:19:45 brianp Exp $ */ +/* $Id: gl.h,v 1.71 2002/09/21 16:47:09 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -2594,6 +2594,45 @@ GLAPI void GLAPIENTRY glTracePointerRangeMESA( const GLvoid* first, const GLvoid #endif /* GL_MESA_packed_depth_stencil */ +#ifndef GL_MESA_ycbcr_texture +#define GL_MESA_ycbcr_texture 1 + +#define GL_YCBCR_MESA 0x8757 +#define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA /* same as Apple */ +#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB /* same as Apple */ + +#endif /* GL_MESA_texture_ycbcr */ + + + +#ifndef GL_MESA_pack_invert +#define GL_MESA_pack_invert 1 + +#define GL_PACK_INVERT_MESA 0x8758 + +#endif /* GL_MESA_pack_invert */ + + + +#ifndef GL_APPLE_client_storage +#define GL_APPLE_client_storage 1 + +#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 + +#endif /* GL_APPLE_client_storage */ + + + +#ifndef GL_APPLE_ycbcr_422 +#define GL_APPLE_ycbcr_422 1 + +#define GL_YCBCR_422_APPLE 0x85B9 +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB + +#endif /* GL_APPLE_ycbcr_422 */ + + /********************************************************************** * Begin system-specific stuff |