summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/image.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-07-23 21:21:30 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-07-23 21:21:30 +0000
commit9c7b81697b2a381d7083e8e4c52f919f36ea9fa1 (patch)
tree543f603401c794bcdbab467a782eba4a817cdc34 /src/mesa/main/image.c
parent9f9bed9c8ea8a1baa922320debbf04128b2b58de (diff)
downloadexternal_mesa3d-9c7b81697b2a381d7083e8e4c52f919f36ea9fa1.zip
external_mesa3d-9c7b81697b2a381d7083e8e4c52f919f36ea9fa1.tar.gz
external_mesa3d-9c7b81697b2a381d7083e8e4c52f919f36ea9fa1.tar.bz2
fix a few more glitches from last big check-in
Diffstat (limited to 'src/mesa/main/image.c')
-rw-r--r--src/mesa/main/image.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c
index 171efb5..b9f026d 100644
--- a/src/mesa/main/image.c
+++ b/src/mesa/main/image.c
@@ -979,11 +979,11 @@ _mesa_pack_float_rgba_span( GLcontext *ctx,
}
/* update histogram count */
if (transferOps & IMAGE_HISTOGRAM_BIT) {
-/* _mesa_update_histogram(ctx, n, (CONST GLfloat (*)[4]) rgba); */
+ _mesa_update_histogram(ctx, n, (CONST GLfloat (*)[4]) rgba);
}
/* min/max here */
if (transferOps & IMAGE_MIN_MAX_BIT) {
-/* _mesa_update_minmax(ctx, n, (CONST GLfloat (*)[4]) rgba); */
+ _mesa_update_minmax(ctx, n, (CONST GLfloat (*)[4]) rgba);
if (ctx->MinMax.Sink) {
UNDEFARRAY(rgbaCopy); /* mac 32k limitation */
return;
@@ -2852,11 +2852,11 @@ _mesa_unpack_chan_color_span( GLcontext *ctx,
}
/* update histogram count */
if (transferOps & IMAGE_HISTOGRAM_BIT) {
-/* _mesa_update_histogram(ctx, n, (CONST GLfloat (*)[4]) rgba); */
+ _mesa_update_histogram(ctx, n, (CONST GLfloat (*)[4]) rgba);
}
/* min/max here */
if (transferOps & IMAGE_MIN_MAX_BIT) {
-/* _mesa_update_minmax(ctx, n, (CONST GLfloat (*)[4]) rgba); */
+ _mesa_update_minmax(ctx, n, (CONST GLfloat (*)[4]) rgba);
}
}
@@ -3129,11 +3129,11 @@ _mesa_unpack_float_color_span( GLcontext *ctx,
}
/* update histogram count */
if (transferOps & IMAGE_HISTOGRAM_BIT) {
-/* _mesa_update_histogram(ctx, n, (CONST GLfloat (*)[4]) rgba); */
+ _mesa_update_histogram(ctx, n, (CONST GLfloat (*)[4]) rgba);
}
/* min/max here */
if (transferOps & IMAGE_MIN_MAX_BIT) {
-/* _mesa_update_minmax(ctx, n, (CONST GLfloat (*)[4]) rgba); */
+ _mesa_update_minmax(ctx, n, (CONST GLfloat (*)[4]) rgba);
}
}