summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/main/colortab.h1
-rw-r--r--src/mesa/main/mtypes.h19
2 files changed, 0 insertions, 20 deletions
diff --git a/src/mesa/main/colortab.h b/src/mesa/main/colortab.h
index 3bc20667792..b0d2b5db845 100644
--- a/src/mesa/main/colortab.h
+++ b/src/mesa/main/colortab.h
@@ -32,7 +32,6 @@
#include "mfeatures.h"
struct _glapi_table;
-struct gl_color_table;
#if FEATURE_colortable
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index b7d4ce122aa..129403c5b5e 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -565,25 +565,6 @@ struct gl_config
/**
- * Data structure for color tables
- */
-struct gl_color_table
-{
- GLenum InternalFormat; /**< The user-specified format */
- GLenum _BaseFormat; /**< GL_ALPHA, GL_RGBA, GL_RGB, etc */
- GLuint Size; /**< number of entries in table */
- GLfloat *TableF; /**< Color table, floating point values */
- GLubyte *TableUB; /**< Color table, ubyte values */
- GLubyte RedSize;
- GLubyte GreenSize;
- GLubyte BlueSize;
- GLubyte AlphaSize;
- GLubyte LuminanceSize;
- GLubyte IntensitySize;
-};
-
-
-/**
* \name Bit flags used for updating material values.
*/
/*@{*/