summaryrefslogtreecommitdiff
path: root/src/mesa/main/image.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-08-31 15:24:07 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-08-31 15:24:07 +0000
commitb92d64e150a3b1389f5a4b6cbfe57425a77f24bf (patch)
tree8a2d53d9b07e5f147a953af6a5c76f8937243efa /src/mesa/main/image.h
parentf93b3dd69e744cf1dd6b102a11cdb07c2df4a967 (diff)
renamed some variables
Diffstat (limited to 'src/mesa/main/image.h')
-rw-r--r--src/mesa/main/image.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mesa/main/image.h b/src/mesa/main/image.h
index 4a18e1937c..e86e36f329 100644
--- a/src/mesa/main/image.h
+++ b/src/mesa/main/image.h
@@ -1,4 +1,4 @@
-/* $Id: image.h,v 1.11 2000/08/30 18:21:37 brianp Exp $ */
+/* $Id: image.h,v 1.12 2000/08/31 15:24:07 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -82,16 +82,16 @@ _mesa_pack_polygon_stipple( const GLuint pattern[32], GLubyte *dest,
extern void
_mesa_pack_float_rgba_span( GLcontext *ctx,
GLuint n, CONST GLfloat rgba[][4],
- GLenum format, GLenum type, GLvoid *dest,
- const struct gl_pixelstore_attrib *packing,
+ GLenum dstFormat, GLenum dstType, GLvoid *dstAddr,
+ const struct gl_pixelstore_attrib *dstPacking,
GLuint transferOps );
extern void
_mesa_pack_rgba_span( GLcontext *ctx,
GLuint n, CONST GLubyte rgba[][4],
- GLenum format, GLenum type, GLvoid *dest,
- const struct gl_pixelstore_attrib *packing,
+ GLenum dstFormat, GLenum dstType, GLvoid *dstAddr,
+ const struct gl_pixelstore_attrib *dstPacking,
GLuint transferOps );
@@ -100,7 +100,7 @@ _mesa_unpack_ubyte_color_span( GLcontext *ctx,
GLuint n, GLenum dstFormat, GLubyte dest[],
GLenum srcFormat, GLenum srcType,
const GLvoid *source,
- const struct gl_pixelstore_attrib *unpacking,
+ const struct gl_pixelstore_attrib *srcPacking,
GLuint transferOps );
@@ -109,7 +109,7 @@ _mesa_unpack_float_color_span( GLcontext *ctx,
GLuint n, GLenum dstFormat, GLfloat dest[],
GLenum srcFormat, GLenum srcType,
const GLvoid *source,
- const struct gl_pixelstore_attrib *unpacking,
+ const struct gl_pixelstore_attrib *srcPacking,
GLuint transferOps, GLboolean clamp );
@@ -117,7 +117,7 @@ extern void
_mesa_unpack_index_span( const GLcontext *ctx, GLuint n,
GLenum dstType, GLvoid *dest,
GLenum srcType, const GLvoid *source,
- const struct gl_pixelstore_attrib *unpacking,
+ const struct gl_pixelstore_attrib *srcPacking,
GLuint transferOps );
@@ -125,14 +125,14 @@ extern void
_mesa_unpack_stencil_span( const GLcontext *ctx, GLuint n,
GLenum dstType, GLvoid *dest,
GLenum srcType, const GLvoid *source,
- const struct gl_pixelstore_attrib *unpacking,
+ const struct gl_pixelstore_attrib *srcPacking,
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,
+ const struct gl_pixelstore_attrib *srcPacking,
GLuint transferOps );