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)).
This commit is contained in:
Brian Paul
2009-04-03 17:28:35 -06:00
parent 35d88e1ac2
commit c7eb423c49
8 changed files with 18 additions and 15 deletions

View File

@@ -486,7 +486,7 @@ st_readpixels(GLcontext *ctx, GLint x, GLint y, GLsizei width, GLsizei height,
df += dfStride;
if (!dfStride) {
_mesa_pack_rgba_span_float(ctx, width, temp, format, type, dst,
&clippedPacking, transferOps, GL_FALSE);
&clippedPacking, transferOps);
dst += dstStride;
}
}