diff options
author | Brian Paul <[email protected]> | 1999-11-19 22:51:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-11-19 22:51:29 +0000 |
commit | f0dee6578ab658d89ec57cc476af7143fa13fde3 (patch) | |
tree | 877ea20635b60271ca2a7cfb7fe5cce4f7ab1b50 /src/mesa/main/colortab.c | |
parent | 7fb54ae3b3e84c6344bc788a5c51272f2a1c2fa6 (diff) |
renamed struct gl_palette as struct gl_color_table
Diffstat (limited to 'src/mesa/main/colortab.c')
-rw-r--r-- | src/mesa/main/colortab.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/colortab.c b/src/mesa/main/colortab.c index f6f281ae1a5..7597d10773f 100644 --- a/src/mesa/main/colortab.c +++ b/src/mesa/main/colortab.c @@ -1,4 +1,4 @@ -/* $Id: colortab.c,v 1.6 1999/11/11 17:53:14 brianp Exp $ */ +/* $Id: colortab.c,v 1.7 1999/11/19 22:51:29 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -119,7 +119,7 @@ _mesa_ColorTableEXT( GLenum target, GLenum internalFormat, GET_CURRENT_CONTEXT(ctx); struct gl_texture_unit *texUnit = &ctx->Texture.Unit[ctx->Texture.CurrentUnit]; struct gl_texture_object *texObj; - struct gl_palette *palette; + struct gl_color_table *palette; GLboolean proxy = GL_FALSE; ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glColorTableEXT"); @@ -216,7 +216,7 @@ _mesa_ColorSubTableEXT( GLenum target, GLsizei start, GET_CURRENT_CONTEXT(ctx); struct gl_texture_unit *texUnit = &ctx->Texture.Unit[ctx->Texture.CurrentUnit]; struct gl_texture_object *texObj; - struct gl_palette *palette; + struct gl_color_table *palette; GLint comps; GLubyte *dest; @@ -290,7 +290,7 @@ _mesa_GetColorTableEXT( GLenum target, GLenum format, { GET_CURRENT_CONTEXT(ctx); struct gl_texture_unit *texUnit = &ctx->Texture.Unit[ctx->Texture.CurrentUnit]; - struct gl_palette *palette; + struct gl_color_table *palette; GLubyte rgba[MAX_TEXTURE_PALETTE_SIZE][4]; GLint i; @@ -395,7 +395,7 @@ _mesa_GetColorTableParameterivEXT( GLenum target, GLenum pname, GLint *params ) { GET_CURRENT_CONTEXT(ctx); struct gl_texture_unit *texUnit = &ctx->Texture.Unit[ctx->Texture.CurrentUnit]; - struct gl_palette *palette; + struct gl_color_table *palette; ASSERT_OUTSIDE_BEGIN_END(ctx, "glGetColorTableParameterEXT"); |