From: Marek Olšák Date: Mon, 12 Nov 2012 23:29:33 +0000 (+0100) Subject: r600g: use LINEAR_ALIGNED tiling for 1D textures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9e530922357d52ab1e517b1f0d4aa076abd3737;p=mesa.git r600g: use LINEAR_ALIGNED tiling for 1D textures Reviewed-by: Alex Deucher --- diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index b1dbf07dffa..7e48f2766a7 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -508,7 +508,8 @@ struct pipe_resource *r600_texture_create(struct pipe_screen *screen, desc->layout != UTIL_FORMAT_LAYOUT_SUBSAMPLED) { if (!(templ->bind & PIPE_BIND_SCANOUT) && templ->usage != PIPE_USAGE_STAGING && - templ->usage != PIPE_USAGE_STREAM) { + templ->usage != PIPE_USAGE_STREAM && + templ->target != PIPE_TEXTURE_1D) { array_mode = V_038000_ARRAY_2D_TILED_THIN1; } else if (util_format_is_compressed(templ->format)) { array_mode = V_038000_ARRAY_1D_TILED_THIN1;