diff options
author | Brian Paul <[email protected]> | 2000-08-21 14:22:24 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-08-21 14:22:24 +0000 |
commit | fa4525e289b475b928a7b2c4055af9dd7fe46600 (patch) | |
tree | 40eaaa3e4674a89779d1c7962c2b01e2eca86620 /src/mesa/main/image.h | |
parent | b1097f24a8410b623deb52069ad7e66bae35944c (diff) |
implemented new ImageTransferState bitmask
Diffstat (limited to 'src/mesa/main/image.h')
-rw-r--r-- | src/mesa/main/image.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/main/image.h b/src/mesa/main/image.h index 1526491b810..c9a3aab662c 100644 --- a/src/mesa/main/image.h +++ b/src/mesa/main/image.h @@ -1,8 +1,8 @@ -/* $Id: image.h,v 1.9 2000/05/10 14:39:53 brianp Exp $ */ +/* $Id: image.h,v 1.10 2000/08/21 14:22:24 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.3 + * Version: 3.5 * * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * @@ -84,7 +84,7 @@ _mesa_pack_rgba_span( GLcontext *ctx, GLuint n, CONST GLubyte rgba[][4], GLenum format, GLenum type, GLvoid *dest, const struct gl_pixelstore_attrib *packing, - GLboolean applyTransferOps ); + GLuint transferOps ); extern void @@ -93,7 +93,7 @@ _mesa_unpack_ubyte_color_span( GLcontext *ctx, GLenum srcFormat, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *unpacking, - GLboolean applyTransferOps ); + GLuint transferOps ); extern void @@ -102,7 +102,7 @@ _mesa_unpack_float_color_span( GLcontext *ctx, GLenum srcFormat, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *unpacking, - GLboolean applyTransferOps, GLboolean clamp ); + GLuint transferOps, GLboolean clamp ); extern void @@ -110,7 +110,7 @@ _mesa_unpack_index_span( const GLcontext *ctx, GLuint n, GLenum dstType, GLvoid *dest, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *unpacking, - GLboolean applyTransferOps ); + GLuint transferOps ); extern void @@ -118,14 +118,14 @@ _mesa_unpack_stencil_span( const GLcontext *ctx, GLuint n, GLenum dstType, GLvoid *dest, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *unpacking, - GLboolean applyTransferOps ); + GLuint transferOps ); extern void _mesa_unpack_depth_span( const GLcontext *ctx, GLuint n, GLdepth *dest, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *unpacking, - GLboolean applyTransferOps ); + GLuint transferOps ); extern void * |