diff options
author | Brian Paul <[email protected]> | 2006-10-13 00:44:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-10-13 00:44:31 +0000 |
commit | e5a6fcc345867b550a159a7d94912a81e618279c (patch) | |
tree | dac93f846c871972ebc71269baa85f97e335f573 /src/mesa/main/pixel.h | |
parent | e392c92250bf91c7aaaeb78e7ec598f86f2a1d6d (diff) |
Revamp color table code.
Always store all color tables as both float and ubyte.
Diffstat (limited to 'src/mesa/main/pixel.h')
-rw-r--r-- | src/mesa/main/pixel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h index 0445b527e83..87f54ed8b3f 100644 --- a/src/mesa/main/pixel.h +++ b/src/mesa/main/pixel.h @@ -98,8 +98,8 @@ _mesa_lookup_rgba_float(const struct gl_color_table *table, GLuint n, GLfloat rgba[][4]); extern void -_mesa_lookup_rgba_chan(const struct gl_color_table *table, - GLuint n, GLchan rgba[][4]); +_mesa_lookup_rgba_ubyte(const struct gl_color_table *table, + GLuint n, GLubyte rgba[][4]); extern void |