remove needless condition
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 13 Oct 2006 17:45:08 +0000 (17:45 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 13 Oct 2006 17:45:08 +0000 (17:45 +0000)
src/mesa/main/image.c

index bb0dd4a..695aab5 100644 (file)
@@ -3479,9 +3479,7 @@ _mesa_pack_index_span( const GLcontext *ctx, GLuint n,
    if (transferOps & (IMAGE_MAP_COLOR_BIT | IMAGE_SHIFT_OFFSET_BIT)) {
       /* make a copy of input */
       _mesa_memcpy(indexes, source, n * sizeof(GLuint));
-      if (transferOps) {
-         _mesa_apply_ci_transfer_ops(ctx, transferOps, n, indexes);
-      }
+      _mesa_apply_ci_transfer_ops(ctx, transferOps, n, indexes);
       source = indexes;
    }