diff options
author | Brian Paul <[email protected]> | 2000-11-03 15:01:38 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-11-03 15:01:38 +0000 |
commit | 44bd53f2599b5045133a185091fbf9d8c7696905 (patch) | |
tree | 565230bf93a7b439534f53837100ca16a1dfb850 /include/GL/gl.h | |
parent | fcb23bbd6ecd5e773d98e80b830a486787fa095a (diff) |
added GL_MESA_packed_depth_stencil extension
Diffstat (limited to 'include/GL/gl.h')
-rw-r--r-- | include/GL/gl.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index bdb40a254ab..ce8821266d4 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,8 +1,8 @@ -/* $Id: gl.h,v 1.45 2000/09/15 19:45:00 brianp Exp $ */ +/* $Id: gl.h,v 1.46 2000/11/03 15:01:38 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.3 + * Version: 3.5 * * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * @@ -2264,6 +2264,21 @@ GLAPI void GLAPIENTRY glTracePointerRange( const GLvoid* first, const GLvoid* la #endif /* GL_MESA_trace */ +/* + * ???. GL_MESA_packed_depth_stencil + * XXX this will be in glext.h someday + */ +#ifndef GL_MESA_packed_depth_stencil +#define GL_MESA_packed_depth_stencil 1 + +#define GL_DEPTH_STENCIL_MESA 0x8750 +#define GL_UNSIGNED_INT_24_8_MESA 0x8751 +#define GL_UNSIGNED_INT_8_24_REV_MESA 0x8752 +#define GL_UNSIGNED_SHORT_15_1_MESA 0x8753 +#define GL_UNSIGNED_SHORT_1_15_REV_MESA 0x8754 + +#endif /* GL_MESA_packed_depth_stencil */ + /********************************************************************** |