summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-08-29 11:39:20 -0700
committerIan Romanick <ian.d.romanick@intel.com>2011-09-06 12:09:12 -0700
commit960f37a57a7fcbac213c0b4fb0daf2285a64bf97 (patch)
treeece6716370e7d165c47e2e0d36ec5e24064a855e
parent81a6cf9ddf5ab7e1c35cf99c28cc7fad808230ef (diff)
mesa: Remove unused struct gl_color_table
Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
-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.
*/
/*@{*/