summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/image.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-05-10 14:39:53 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-05-10 14:39:53 +0000
commit7a39d2f833807f8defd2304b0ff180944c23ea0c (patch)
tree4c27a842446472a571671246cb3fce9d9cca614d /src/mesa/main/image.c
parent102860a4590b64b74af25880e06483da938a2b88 (diff)
downloadexternal_mesa3d-7a39d2f833807f8defd2304b0ff180944c23ea0c.zip
external_mesa3d-7a39d2f833807f8defd2304b0ff180944c23ea0c.tar.gz
external_mesa3d-7a39d2f833807f8defd2304b0ff180944c23ea0c.tar.bz2
more GL_EXT_convolution work
Diffstat (limited to 'src/mesa/main/image.c')
-rw-r--r--src/mesa/main/image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c
index 23c5b77..dc6abb3 100644
--- a/src/mesa/main/image.c
+++ b/src/mesa/main/image.c
@@ -1,4 +1,4 @@
-/* $Id: image.c,v 1.30 2000/05/04 13:48:49 brianp Exp $ */
+/* $Id: image.c,v 1.31 2000/05/10 14:39:53 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -2459,7 +2459,7 @@ _mesa_unpack_float_color_span( GLcontext *ctx,
GLenum srcFormat, GLenum srcType,
const GLvoid *source,
const struct gl_pixelstore_attrib *unpacking,
- GLboolean applyTransferOps )
+ GLboolean applyTransferOps, GLboolean clamp )
{
ASSERT(dstFormat == GL_ALPHA ||
dstFormat == GL_LUMINANCE ||
@@ -2601,7 +2601,7 @@ _mesa_unpack_float_color_span( GLcontext *ctx,
}
/* clamp to [0,1] */
- {
+ if (clamp) {
GLuint i;
for (i = 0; i < n; i++) {
rgba[i][RCOMP] = CLAMP(rgba[i][RCOMP], 0.0F, 1.0F);