diff --git a/.pick_status.json b/.pick_status.json index f7a48576670..5f83292fdbd 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -504,7 +504,7 @@ "description": "freedreno/a6xx: Align lrz height to 32", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "a127a78548721716b5262b127fcc9715052507a2", "notes": null diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_resource.cc b/src/gallium/drivers/freedreno/a6xx/fd6_resource.cc index 2985f3f22c5..f54a2e275a4 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_resource.cc +++ b/src/gallium/drivers/freedreno/a6xx/fd6_resource.cc @@ -249,7 +249,7 @@ setup_lrz(struct fd_resource *rsc) } unsigned lrz_pitch = align(DIV_ROUND_UP(width0, 8), 32); - unsigned lrz_height = align(DIV_ROUND_UP(height0, 8), 16); + unsigned lrz_height = align(DIV_ROUND_UP(height0, 8), 32); rsc->lrz_height = lrz_height; rsc->lrz_width = lrz_pitch;