summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-02-17 00:15:39 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-02-17 00:15:39 +0000
commitf7e1dfeaefda8865252513bc4d880ea8640efe4d (patch)
tree12fa38278c6ea1d73d9f27f8c5222791953f7809 /src/mesa/main/mtypes.h
parent23e8d46e072669e0974d7b2c168d4770183106bd (diff)
Work in glGetTexImage() to return GL_COLOR_INDEX images.
Prototype code for GL_SGIX_depth_texture / more flexible teximage code.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 2e0c1d149d..59cd836c8a 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1,4 +1,4 @@
-/* $Id: mtypes.h,v 1.18 2001/02/06 21:42:48 brianp Exp $ */
+/* $Id: mtypes.h,v 1.19 2001/02/17 00:15:39 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -788,6 +788,7 @@ struct gl_texture_image {
GLubyte IntensityBits; /* color resolution. */
GLubyte LuminanceBits;
GLubyte IndexBits;
+ GLubyte DepthBits;
GLuint Border; /* 0 or 1 */
GLuint Width; /* = 2^WidthLog2 + 2*Border */
GLuint Height; /* = 2^HeightLog2 + 2*Border */
@@ -1221,6 +1222,7 @@ struct gl_extensions {
GLboolean SGI_color_table;
GLboolean SGIS_pixel_texture;
GLboolean SGIS_texture_edge_clamp;
+ GLboolean SGIX_depth_texture;
GLboolean SGIX_pixel_texture;
GLboolean _3DFX_texture_compression_FXT1;
};