radeonsi: disable tiling until we fixed all bugs
authorChristian König <deathsimple@vodafone.de>
Wed, 1 Aug 2012 09:21:19 +0000 (11:21 +0200)
committerChristian König <deathsimple@vodafone.de>
Thu, 2 Aug 2012 09:22:40 +0000 (11:22 +0200)
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>
src/gallium/drivers/radeonsi/r600_texture.c

index e34247ef40abf7d22c39fe2ce5fbd29ae6a476ce..392f177f634cbdb878042c9724aced1756b22c63 100644 (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) {