From 40b88fd1f3dedd0137b170a7272854e2bf4c3210 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 13 Oct 2006 17:45:08 +0000 Subject: remove needless condition --- src/mesa/main/image.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index bb0dd4ae95..695aab5227 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -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; } -- cgit v1.2.3