diff options
author | Brian Paul <[email protected]> | 2000-10-29 18:12:14 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-10-29 18:12:14 +0000 |
commit | 699bc7b73d2fede77d3290f66c1ec355afd0373e (patch) | |
tree | e4db02b4dd9aa40fadf922c094014ed6541726c4 /src/mesa/main/pixel.h | |
parent | c893a015d8a50a38cd3f727d99835e7e7e2ccea9 (diff) |
More GLchan color channel changes.
Some header file re-org:
Move matrix, vertex buffer structs to types.h to fix #include mess.
Remove typedef, extern declarations from config.h
Diffstat (limited to 'src/mesa/main/pixel.h')
-rw-r--r-- | src/mesa/main/pixel.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h index 27d200825e8..7eb0741aea1 100644 --- a/src/mesa/main/pixel.h +++ b/src/mesa/main/pixel.h @@ -1,8 +1,8 @@ -/* $Id: pixel.h,v 1.5 2000/04/12 18:54:48 brianp Exp $ */ +/* $Id: pixel.h,v 1.6 2000/10/29 18:12:15 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.3 + * Version: 3.5 * * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * @@ -103,9 +103,9 @@ _mesa_map_ci(const GLcontext *ctx, GLuint n, GLuint index[]); extern void -_mesa_map_ci_to_rgba_ubyte(const GLcontext *ctx, - GLuint n, const GLuint index[], - GLubyte rgba[][4]); +_mesa_map_ci_to_rgba_chan(const GLcontext *ctx, + GLuint n, const GLuint index[], + GLchan rgba[][4]); extern void @@ -116,7 +116,7 @@ _mesa_map_ci_to_rgba(const GLcontext *ctx, extern void _mesa_map_ci8_to_rgba(const GLcontext *ctx, GLuint n, const GLubyte index[], - GLubyte rgba[][4]); + GLchan rgba[][4]); extern void |