From 9b7dc5e81cfebeb6a61f3fee704bfec3fa6d6e77 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20K=C3=B6nig?= Date: Wed, 1 Aug 2012 11:21:19 +0200 Subject: [PATCH] radeonsi: disable tiling until we fixed all bugs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Currently there are more important things to worry about. Signed-off-by: Christian König Reviewed-by: Michel Dänzer --- src/gallium/drivers/radeonsi/r600_texture.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/radeonsi/r600_texture.c b/src/gallium/drivers/radeonsi/r600_texture.c index e34247ef40a..392f177f634 100644 --- a/src/gallium/drivers/radeonsi/r600_texture.c +++ b/src/gallium/drivers/radeonsi/r600_texture.c @@ -567,12 +567,14 @@ struct pipe_resource *r600_texture_create(struct pipe_screen *screen, unsigned array_mode = 0; int r; +#if 0 if (!(templ->flags & R600_RESOURCE_FLAG_TRANSFER) && !(templ->bind & PIPE_BIND_SCANOUT)) { if (permit_hardware_blit(screen, templ)) { array_mode = V_009910_ARRAY_2D_TILED_THIN1; } } +#endif r = r600_init_surface(&surface, templ, array_mode); if (r) { -- 2.30.2