mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 06:00:14 +01:00
intel: Respect texture tiling when doing a PBO blit teximage upload.
Bug #26008. Fixes piglit pbo-teximage-tiling-2.
This commit is contained in:
parent
a794c660d3
commit
22bbc97994
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue