Mesa (master): intel: fix src offset bug in do_copy_texsubimage()

Brian Paul brianp at kemper.freedesktop.org
Tue Oct 27 23:00:59 UTC 2009


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

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Oct 27 16:39:01 2009 -0600

intel: fix src offset bug in do_copy_texsubimage()

Use src->draw_offset intead of zero.  Zero usually worked, except when
the src renderbuffer is actually a texture mipmap level higher than zero.
Fixes progs/test/blitfb.c test.

---

 src/mesa/drivers/dri/intel/intel_tex_copy.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_tex_copy.c b/src/mesa/drivers/dri/intel/intel_tex_copy.c
index c7c48e3..7e0fed8 100644
--- a/src/mesa/drivers/dri/intel/intel_tex_copy.c
+++ b/src/mesa/drivers/dri/intel/intel_tex_copy.c
@@ -158,7 +158,7 @@ do_copy_texsubimage(struct intel_context *intel,
 			     intelImage->mt->cpp,
 			     src_pitch,
 			     src->buffer,
-			     0,
+			     src->draw_offset,
 			     src->tiling,
 			     intelImage->mt->pitch,
 			     dst_bo,




More information about the mesa-commit mailing list