Mesa (master): i965/copy_image: Use the correct block dimension

Jason Ekstrand jekstrand at kemper.freedesktop.org
Wed Sep 3 19:27:56 UTC 2014


Module: Mesa
Branch: master
Commit: 499acf6e4a758be74dc5813a8c174da4360e046d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=499acf6e4a758be74dc5813a8c174da4360e046d

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Tue Sep  2 15:28:39 2014 -0700

i965/copy_image: Use the correct block dimension

Signed-off-by: Jason Ekstrand <jason.ekstrand at intel.com>
Cc: "10.3" <mesa-stable at lists.freedesktop.org>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82804
Tested-by: Tapani Pälli <tapani.palli at intel.com>
Reviewed-by: Matt Turner <mattst88 at gmail.com>

---

 src/mesa/drivers/dri/i965/intel_copy_image.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/intel_copy_image.c b/src/mesa/drivers/dri/i965/intel_copy_image.c
index 935f91c..8bda2dd 100644
--- a/src/mesa/drivers/dri/i965/intel_copy_image.c
+++ b/src/mesa/drivers/dri/i965/intel_copy_image.c
@@ -74,14 +74,14 @@ copy_image_with_blitter(struct brw_context *brw,
       _mesa_get_format_block_size(src_mt->format, &bw, &bh);
 
       assert(src_x % bw == 0);
-      assert(src_y % bw == 0);
+      assert(src_y % bh == 0);
       assert(src_width % bw == 0);
-      assert(src_height % bw == 0);
+      assert(src_height % bh == 0);
 
       src_x /= (int)bw;
-      src_y /= (int)bw;
+      src_y /= (int)bh;
       src_width /= (int)bw;
-      src_height /= (int)bw;
+      src_height /= (int)bh;
 
       cpp = _mesa_get_format_bytes(src_mt->format);
    } else {
@@ -92,10 +92,10 @@ copy_image_with_blitter(struct brw_context *brw,
       _mesa_get_format_block_size(dst_mt->format, &bw, &bh);
 
       assert(dst_x % bw == 0);
-      assert(dst_y % bw == 0);
+      assert(dst_y % bh == 0);
 
       dst_x /= (int)bw;
-      dst_y /= (int)bw;
+      dst_y /= (int)bh;
    }
 
    uint32_t src_image_x, src_image_y;




More information about the mesa-commit mailing list