updated some comments
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 29 Aug 2000 14:25:30 +0000 (14:25 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 29 Aug 2000 14:25:30 +0000 (14:25 +0000)
src/mesa/main/image.c

index 49ea1d5bf5799c162bb96f32fb0498a090533e59..4f8faf8366e3a4d7cb41bed461c2796b3cf9a7c5 100644 (file)
@@ -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) {