diff options
author | Brian Paul <brianp@vmware.com> | 2009-04-03 17:28:35 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-04-03 17:28:35 -0600 |
commit | c7eb423c49ef3e0e071deaab04dad55254f2fa30 (patch) | |
tree | 773ce651643a7281561a66ecdda1e407ec4cd4f1 /src/mesa/main/image.h | |
parent | 35d88e1ac2cd34d5cc62f521654d79f5b24fcdf8 (diff) |
mesa: remove the noClamp parameter to _mesa_pack_rgba_span_float()
It was only set to GL_TRUE in one place where it isn't really needed
(glGetTexImage(sRGB format)).
Diffstat (limited to 'src/mesa/main/image.h')
-rw-r--r-- | src/mesa/main/image.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/image.h b/src/mesa/main/image.h index fb7a5c0e90..b26c27e5a8 100644 --- a/src/mesa/main/image.h +++ b/src/mesa/main/image.h @@ -178,7 +178,7 @@ extern void _mesa_pack_rgba_span_float( GLcontext *ctx, GLuint n, GLfloat rgba[][4], GLenum dstFormat, GLenum dstType, GLvoid *dstAddr, const struct gl_pixelstore_attrib *dstPacking, - GLbitfield transferOps, GLboolean noClamp ); + GLbitfield transferOps ); extern void |