diff options
author | Brian Paul <[email protected]> | 2004-02-28 20:12:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-02-28 20:12:33 +0000 |
commit | d0582776a619cc0633a0cbeea010a0db5e3e210f (patch) | |
tree | 8ab6cc164d5b168715169f9d185f4095956d21f9 /src/mesa/main/pixel.h | |
parent | 456734aa0a6da47ad586f2ec021a429526e3152a (diff) |
move _swrast_texture_table_lookup() to _mesa_lookup_rgba_chan()
Diffstat (limited to 'src/mesa/main/pixel.h')
-rw-r--r-- | src/mesa/main/pixel.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h index a3efcf5666e..32696c8b668 100644 --- a/src/mesa/main/pixel.h +++ b/src/mesa/main/pixel.h @@ -5,9 +5,9 @@ /* * Mesa 3-D graphics library - * Version: 5.1 + * Version: 6.1 * - * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -94,8 +94,12 @@ _mesa_transform_rgba(const GLcontext *ctx, GLuint n, GLfloat rgba[][4]); extern void -_mesa_lookup_rgba(const struct gl_color_table *table, - GLuint n, GLfloat rgba[][4]); +_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]); extern void |