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

Bug #26008.  Fixes piglit pbo-teximage-tiling-2.
This commit is contained in:
Eric Anholt 2010-01-30 15:11:09 -08:00
parent a794c660d3
commit 22bbc97994

View file

@ -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;