diff options
author | Brian Paul <[email protected]> | 2004-02-28 22:30:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-02-28 22:30:58 +0000 |
commit | 4923e1926ad7b7eb7de017eda8e7db64d357e5c8 (patch) | |
tree | 7bd9696c56a62747e9e7c7d57295ca315dba0922 /src/mesa/main/image.h | |
parent | 94f9d4c0dd2b62e01032c2b0dd9b8a25466690c2 (diff) |
Remove clamp parameter from _mesa_unpack_color_span_float(). Pass the
IMAGE_CLAMP_BIT if needed.
Added ClampVertexColors and ClampFragmentColors to GLcontext in anticipation
of upcoming extensions (not fully used yet).
Diffstat (limited to 'src/mesa/main/image.h')
-rw-r--r-- | src/mesa/main/image.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/image.h b/src/mesa/main/image.h index cd79d5f223f..b3757a30fdc 100644 --- a/src/mesa/main/image.h +++ b/src/mesa/main/image.h @@ -110,10 +110,10 @@ _mesa_pack_rgba_span_float( GLcontext *ctx, extern void _mesa_pack_rgba_span_chan( GLcontext *ctx, - GLuint n, CONST GLchan rgba[][4], - GLenum dstFormat, GLenum dstType, GLvoid *dstAddr, - const struct gl_pixelstore_attrib *dstPacking, - GLuint transferOps ); + GLuint n, CONST GLchan rgba[][4], + GLenum dstFormat, GLenum dstType, GLvoid *dstAddr, + const struct gl_pixelstore_attrib *dstPacking, + GLuint transferOps ); extern void @@ -131,7 +131,7 @@ _mesa_unpack_color_span_float( GLcontext *ctx, GLenum srcFormat, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *srcPacking, - GLuint transferOps, GLboolean clamp ); + GLuint transferOps ); extern void |