u_blitter: use util_is_format_compatible in the assert
authorMarek Olšák <maraeo@gmail.com>
Tue, 7 Dec 2010 05:22:38 +0000 (06:22 +0100)
committerMarek Olšák <maraeo@gmail.com>
Tue, 7 Dec 2010 05:22:38 +0000 (06:22 +0100)
src/gallium/auxiliary/util/u_blitter.c

index eeed87e..4c986e3 100644 (file)
@@ -738,7 +738,8 @@ void util_blitter_copy_region(struct blitter_context *blitter,
       assert(!is_overlap(srcbox->x, srcbox->x + width, srcbox->y, srcbox->y + height,
                          dstx, dstx + width, dsty, dsty + height));
    } else {
-      assert(dst->format == src->format);
+      assert(util_is_format_compatible(util_format_description(dst->format),
+                                       util_format_description(src->format)));
    }
    assert(src->target < PIPE_MAX_TEXTURE_TYPES);
    /* XXX should handle 3d regions */