From 3e59fb570ae82d988a90d341d1ffdd5c3ece1aa4 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 9 Feb 2012 22:15:45 -0700 Subject: [PATCH] mesa: remove unused gl_pixelmap::Map8[] array Reviewed-by: Jose Fonseca --- src/mesa/main/mtypes.h | 1 - src/mesa/main/pixel.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 521bb39f992..6066e6f5b96 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1045,7 +1045,6 @@ struct gl_pixelmap { GLint Size; GLfloat Map[MAX_PIXEL_MAP_TABLE]; - GLubyte Map8[MAX_PIXEL_MAP_TABLE]; /**< converted to 8-bit color */ }; diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index e73c5a49a4a..450c936b745 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -137,7 +137,6 @@ store_pixelmap(struct gl_context *ctx, GLenum map, GLsizei mapsize, for (i = 0; i < mapsize; i++) { GLfloat val = CLAMP(values[i], 0.0F, 1.0F); pm->Map[i] = val; - pm->Map8[i] = (GLint) (val * 255.0F); } } } @@ -683,7 +682,6 @@ init_pixelmap(struct gl_pixelmap *map) { map->Size = 1; map->Map[0] = 0.0; - map->Map8[0] = 0; } -- 2.30.2