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

@@ -684,7 +684,7 @@ _mesa_GetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvo
minmax[1][BCOMP] = CLAMP(ctx->MinMax.Max[BCOMP], 0.0F, 1.0F);
minmax[1][ACOMP] = CLAMP(ctx->MinMax.Max[ACOMP], 0.0F, 1.0F);
_mesa_pack_rgba_span_float(ctx, 2, minmax,
format, type, values, &ctx->Pack, 0x0, GL_FALSE);
format, type, values, &ctx->Pack, 0x0);
}
if (ctx->Pack.BufferObj->Name) {