diff options
author | Brian Paul <[email protected]> | 2005-10-05 02:11:15 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-05 02:11:15 +0000 |
commit | 198a88923c185bb0530787cd80cb9e1d700f2c91 (patch) | |
tree | a2375a5cf288a2f601390b0f954f86337191f814 /src/mesa/main/pixel.c | |
parent | 8184ec9fb6b08c6c8a0398040ae5d89dd0b0cfb8 (diff) |
s/IntFormat/InternalFormat/ and s/Format/_BaseFormat/ for gl_color_table.
Diffstat (limited to 'src/mesa/main/pixel.c')
-rw-r--r-- | src/mesa/main/pixel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 1f7bfc8bb8a..b6b2fc516a0 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -1174,7 +1174,7 @@ _mesa_lookup_rgba_float(const struct gl_color_table *table, if (!table->Table || table->Size == 0) return; - switch (table->Format) { + switch (table->_BaseFormat) { case GL_INTENSITY: /* replace RGBA with I */ if (table->Type == GL_FLOAT) { @@ -1385,7 +1385,7 @@ _mesa_lookup_rgba_chan(const struct gl_color_table *table, if (!table->Table || table->Size == 0) return; - switch (table->Format) { + switch (table->_BaseFormat) { case GL_INTENSITY: /* replace RGBA with I */ if (table->Type == GL_FLOAT) { |