From ef9025a641624991113b7df2eecdf7c8e330a31c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 29 Aug 2000 14:25:30 +0000 Subject: updated some comments --- src/mesa/main/image.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/mesa/main') diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 49ea1d5bf5..4f8faf8366 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -1,4 +1,4 @@ -/* $Id: image.c,v 1.36 2000/08/21 14:22:24 brianp Exp $ */ +/* $Id: image.c,v 1.37 2000/08/29 14:25:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -669,7 +669,7 @@ _mesa_pack_rgba_span( GLcontext *ctx, } /* convolution */ if (transferOps & IMAGE_CONVOLUTION_BIT) { - /* XXX to do */ + /* this has to be done in the calling code */ } /* GL_POST_CONVOLUTION_COLOR_TABLE lookup */ if (transferOps & IMAGE_POST_CONVOLUTION_COLOR_TABLE_BIT) { @@ -695,6 +695,9 @@ _mesa_pack_rgba_span( GLcontext *ctx, } } + /* XXX clamp rgba to [0,1]? */ + + if (format == GL_LUMINANCE || format == GL_LUMINANCE_ALPHA) { for (i = 0; i < n; i++) { GLfloat sum = rgba[i][RCOMP] + rgba[i][GCOMP] + rgba[i][BCOMP]; @@ -2304,7 +2307,7 @@ _mesa_unpack_ubyte_color_span( GLcontext *ctx, } /* convolution */ if (transferOps & IMAGE_CONVOLUTION_BIT) { - /* XXX to do */ + /* this has to be done in the calling code */ } /* GL_POST_CONVOLUTION_COLOR_TABLE lookup */ if (transferOps & IMAGE_POST_CONVOLUTION_COLOR_TABLE_BIT) { -- cgit v1.2.3