i965: Don't store qpitch / 4 as mt->qpitch for compressed surfaces.

Broadwell requires software to specify QPitch in a bunch of packets,
so we decided to store it in the miptree.  However, when I did that
refactoring, I missed a subtlety: the hardware expects QPitch to be
"in units of rows in the uncompressed surface".

This is the value we originally compute.  However, for compressed
surfaces, we then divided it by 4 (the block height), to obtain the
physical layout.  This is no longer the QPitch Broadwell expects.

So, store the original undivided value in mt->qpitch, but continue to
use the divided value in brw_miptree_layout_texture_array().  For
non-Broadwell platforms, this should have no impact at all.

Helps fix Piglit's "getteximage-targets S3TC CUBE" test on Broadwell.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Kenneth Graunke 2014-01-22 16:48:03 -08:00
parent a487b4d0e3
commit 07149f0252
2 changed files with 8 additions and 5 deletions

View File

@ -246,17 +246,17 @@ brw_miptree_layout_texture_array(struct brw_context *brw,
mt->qpitch = h0;
else
mt->qpitch = (h0 + h1 + (brw->gen >= 7 ? 12 : 11) * mt->align_h);
if (mt->compressed)
mt->qpitch /= 4;
int physical_qpitch = mt->compressed ? mt->qpitch / 4 : mt->qpitch;
brw_miptree_layout_2d(mt);
for (unsigned level = mt->first_level; level <= mt->last_level; level++) {
for (int q = 0; q < mt->physical_depth0; q++) {
intel_miptree_set_image_offset(mt, level, q, 0, q * mt->qpitch);
intel_miptree_set_image_offset(mt, level, q, 0, q * physical_qpitch);
}
}
mt->total_height = mt->qpitch * mt->physical_depth0;
mt->total_height = physical_qpitch * mt->physical_depth0;
align_cube(mt);
}

View File

@ -334,7 +334,10 @@ struct intel_mipmap_tree
bool array_spacing_lod0;
/**
* The distance in rows between array slices.
* The distance in rows between array slices in an uncompressed surface.
*
* For compressed surfaces, slices are stored closer together physically;
* the real distance is (qpitch / block height).
*/
uint32_t qpitch;