radeonsi: disable tiling until we fixed all bugs

Currently there are more important things to worry about.

Signed-off-by: Christian König <deathsimple@vodafone.de>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
Christian König
2012-08-01 11:21:19 +02:00
parent 8734584952
commit 9b7dc5e81c

View File

@@ -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) {