i965/blit: Fix the src dimension sanity check in miptree_copy
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 6 Dec 2016 20:03:11 +0000 (12:03 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Tue, 13 Dec 2016 23:48:13 +0000 (15:48 -0800)
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Cc: "13.0" <mesa-stable@lists.freedesktop.org>
src/mesa/drivers/dri/i965/intel_blit.c

index 03a35ee0bd48e95dbad33b0554682e5451fe591a..21a16e18c38e5d5e977159bb5ff488bb6075b1ba 100644 (file)
@@ -419,10 +419,18 @@ intel_miptree_copy(struct brw_context *brw,
       GLuint bw, bh;
       _mesa_get_format_block_size(src_mt->format, &bw, &bh);
 
+      /* Compressed textures need not have dimensions that are a multiple of
+       * the block size.  Rectangles in compressed textures do need to be a
+       * multiple of the block size.  The one exception is that the right and
+       * bottom edges may be at the right or bottom edge of the miplevel even
+       * if it's not aligned.
+       */
       assert(src_x % bw == 0);
       assert(src_y % bh == 0);
-      assert(src_width % bw == 0);
-      assert(src_height % bh == 0);
+      assert(src_width % bw == 0 ||
+             src_x + src_width == minify(src_mt->logical_width0, src_level));
+      assert(src_height % bh == 0 ||
+             src_y + src_height == minify(src_mt->logical_height0, src_level));
 
       src_x /= (int)bw;
       src_y /= (int)bh;