mesa: remove unused gl_constants::MaxColorTableSize
authorMarek Olšák <maraeo@gmail.com>
Thu, 2 May 2013 02:09:04 +0000 (04:09 +0200)
committerMarek Olšák <maraeo@gmail.com>
Sat, 11 May 2013 21:45:01 +0000 (23:45 +0200)
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/main/config.h
src/mesa/main/context.c
src/mesa/main/mtypes.h

index c48ffdc4778f17e714ae247865f652c253693970..ea87b754a40dc3c3dc569d6c491fbe09b469625e 100644 (file)
@@ -91,9 +91,6 @@
 /** Line width granularity */
 #define LINE_WIDTH_GRANULARITY 0.1
 
-/** Max texture palette / color table size */
-#define MAX_COLOR_TABLE_SIZE 256
-
 /** Max memory to allow for a single texture image (in megabytes) */
 #define MAX_TEXTURE_MBYTES 1024
 
index 3041ec24aec368cbf1f6d1d27e630548a077be8e..2006a44d638cec69217ab58394f4497f7edcc242 100644 (file)
@@ -571,7 +571,6 @@ _mesa_init_constants(struct gl_context *ctx)
    ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
    ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
    ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
-   ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
    ctx->Const.MaxClipPlanes = 6;
    ctx->Const.MaxLights = MAX_LIGHTS;
    ctx->Const.MaxShininess = 128.0;
index 1d24c9926aacc7de0507605c31b1643cd82ba72e..14a9af0023db93b31af08fccedab391669d469b0 100644 (file)
@@ -2771,8 +2771,6 @@ struct gl_constants
    GLfloat MinLineWidthAA, MaxLineWidthAA;   /**< antialiased */
    GLfloat LineWidthGranularity;
 
-   GLuint MaxColorTableSize;
-
    GLuint MaxClipPlanes;
    GLuint MaxLights;
    GLfloat MaxShininess;                     /**< GL_NV_light_max_exponent */