[Mesa-dev] [PATCH 1/6] radeonsi: disable tiling until we fixed all bugs
Christian König
deathsimple at vodafone.de
Wed Aug 1 14:28:22 PDT 2012
Currently there are more important things to worry about.
Signed-off-by: Christian König <deathsimple at vodafone.de>
---
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 e34247e..392f177 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) {
--
1.7.9.5
More information about the mesa-dev
mailing list