r600g: disable tiling by default again.

we still have a lot of corner cases that aren't working.

Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Dave Airlie 2011-03-04 08:42:33 +10:00
parent 9f3c59a350
commit 137d44e0f2
1 changed files with 4 additions and 4 deletions

View File

@ -415,10 +415,10 @@ struct pipe_resource *r600_texture_create(struct pipe_screen *screen,
*/
if (force_tiling == -1) {
struct r600_screen *rscreen = (struct r600_screen *)screen;
if (r600_get_minor_version(rscreen->radeon) >= 9)
force_tiling = debug_get_bool_option("R600_TILING", TRUE);
else
force_tiling = debug_get_bool_option("R600_TILING", FALSE);
/* reenable when 2D tiling is fixed better */
/*if (r600_get_minor_version(rscreen->radeon) >= 9)
force_tiling = debug_get_bool_option("R600_TILING", TRUE);*/
force_tiling = debug_get_bool_option("R600_TILING", FALSE);
}
if (force_tiling && permit_hardware_blit(screen, templ)) {