From: Brian Paul Date: Fri, 3 Nov 2000 15:01:38 +0000 (+0000) Subject: added GL_MESA_packed_depth_stencil extension X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44bd53f2599b5045133a185091fbf9d8c7696905;p=mesa.git added GL_MESA_packed_depth_stencil extension --- 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 */ + /**********************************************************************