From: Rob Clark Date: Thu, 4 Oct 2018 19:52:06 +0000 (-0400) Subject: freedreno/a5xx+a6xx: fix LRZ pitch alignment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fa52ff856dd055307489428d3e4405b293be3de2;p=mesa.git freedreno/a5xx+a6xx: fix LRZ pitch alignment Both RB_2D_DST_SIZE.PITCH (a6xx) and RB_MRT[n].PITCH (a5xx) need alignment to 64. Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/freedreno_resource.c b/src/gallium/drivers/freedreno/freedreno_resource.c index 88d420bdf3e..8fbc7819303 100644 --- a/src/gallium/drivers/freedreno/freedreno_resource.c +++ b/src/gallium/drivers/freedreno/freedreno_resource.c @@ -848,7 +848,7 @@ fd_resource_create(struct pipe_screen *pscreen, (fd_mesa_debug & FD_DBG_LRZ) && has_depth(format)) { const uint32_t flags = DRM_FREEDRENO_GEM_CACHE_WCOMBINE | DRM_FREEDRENO_GEM_TYPE_KMEM; /* TODO */ - unsigned lrz_pitch = align(DIV_ROUND_UP(tmpl->width0, 8), 32); + unsigned lrz_pitch = align(DIV_ROUND_UP(tmpl->width0, 8), 64); unsigned lrz_height = DIV_ROUND_UP(tmpl->height0, 8); unsigned size = lrz_pitch * lrz_height * 2;