mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 17:28:09 +02:00
i965/gen5+: Fix incorrect miptree layout for non-power-of-two cubemaps.
For power-of-two sizes, h0 == mt->height0 since it's already a multiple of two. However, for NPOT, they're different; h1 should be computed based on the original size. Fixes piglit test "cubemap npot" and oglconform test "textureNPOT". NOTE: This is a candidate for stable release branches. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> (cherry picked from commit bebc19448f45dbe8c3b016d440403f52e1036e15)
This commit is contained in:
parent
f484fc7476
commit
0f87fe948a
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ GLboolean brw_miptree_layout(struct intel_context *intel,
|
|||
* given in Volume 1 of the BSpec.
|
||||
*/
|
||||
h0 = ALIGN(mt->height0, align_h);
|
||||
h1 = ALIGN(minify(h0), align_h);
|
||||
h1 = ALIGN(minify(mt->height0), align_h);
|
||||
qpitch = (h0 + h1 + (intel->gen >= 7 ? 12 : 11) * align_h);
|
||||
if (mt->compressed)
|
||||
qpitch /= 4;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue