Mesa (master): intel: Respect texture tiling when doing a PBO blit teximage upload.

Eric Anholt anholt at kemper.freedesktop.org
Sat Jan 30 23:17:43 UTC 2010


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

Author: Eric Anholt <eric at anholt.net>
Date:   Sat Jan 30 15:11:09 2010 -0800

intel: Respect texture tiling when doing a PBO blit teximage upload.

Bug #26008.  Fixes piglit pbo-teximage-tiling-2.

---

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

diff --git a/src/mesa/drivers/dri/intel/intel_tex_image.c b/src/mesa/drivers/dri/intel/intel_tex_image.c
index f5d0dab..a56e085 100644
--- a/src/mesa/drivers/dri/intel/intel_tex_image.c
+++ b/src/mesa/drivers/dri/intel/intel_tex_image.c
@@ -240,7 +240,8 @@ try_pbo_upload(struct intel_context *intel,
       if (!intelEmitCopyBlit(intel,
 			     intelImage->mt->cpp,
 			     src_stride, src_buffer, src_offset, GL_FALSE,
-			     dst_stride, dst_buffer, 0, GL_FALSE,
+			     dst_stride, dst_buffer, 0,
+			     intelImage->mt->region->tiling,
 			     0, 0, dst_x, dst_y, width, height,
 			     GL_COPY)) {
 	 return GL_FALSE;




More information about the mesa-commit mailing list