From: Eric Anholt Date: Mon, 20 Nov 2017 18:14:38 +0000 (-0800) Subject: broadcom/vc5: Align 1D texture miplevels to 64b. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=494effd242d9311f5ff1c923d55322970e4296bc;p=mesa.git broadcom/vc5: Align 1D texture miplevels to 64b. Fixes tex-miplevel-selection GL2:texture() 1D --- diff --git a/src/gallium/drivers/vc5/vc5_resource.c b/src/gallium/drivers/vc5/vc5_resource.c index dad238f89fb..768f8d41f08 100644 --- a/src/gallium/drivers/vc5/vc5_resource.c +++ b/src/gallium/drivers/vc5/vc5_resource.c @@ -442,6 +442,8 @@ vc5_setup_slices(struct vc5_resource *rsc) if (!rsc->tiled) { slice->tiling = VC5_TILING_RASTER; + if (prsc->target == PIPE_TEXTURE_1D) + level_width = align(level_width, 64 / rsc->cpp); } else { if ((i != 0 || !uif_top) && (level_width <= utile_w ||