i965: Fix aligning to the block size in intel_miptree_copy_slice
authorNeil Roberts <neil@linux.intel.com>
Thu, 11 Jun 2015 15:59:07 +0000 (16:59 +0100)
committerNeil Roberts <neil@linux.intel.com>
Tue, 16 Jun 2015 10:28:44 +0000 (11:28 +0100)
commit1a6220b416f02e56575894efbbd1717c9427c763
tree59ae5769d3335b730529806e6d27c37e690e073c
parent8b24388647f626a5cad10fd48e61335ed26a8560
i965: Fix aligning to the block size in intel_miptree_copy_slice

This function was trying to align the width and height to a multiple
of the block size for compressed textures. It was using align_w/h as a
shortcut to get the block size as up until Gen9 this always happens to
match. However in Gen9+ the alignment values are expressed as
multiples of the block size so in effect the alignment values are
always 4 for compressed textures as that is the minimum value we can
pick. This happened to work for most compressed formats because the
block size is also 4, but for FXT1 this was breaking because it has a
block width of 8.

This fixes some Piglit tests testing FXT1 such as

spec@3dfx_texture_compression_fxt1@fbo-generatemipmap-formats

Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
src/mesa/drivers/dri/i965/intel_mipmap_tree.c