From: Lucas Stach Date: Mon, 21 Nov 2016 11:32:15 +0000 (+0100) Subject: etnaviv: enable TS, but disable autodisable X-Git-Tag: upstream/17.1.0~290 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ee7c2c2843cc82d17da18d95b3ded4db1dc54e4;p=platform%2Fupstream%2Fmesa.git etnaviv: enable TS, but disable autodisable Autodisable seems to cause missed rendering in some cases, but otherwise TS seems to work properly. Signed-off-by: Lucas Stach Reviewed-by: Wladimir J. van der Laan --- diff --git a/src/gallium/drivers/etnaviv/etnaviv_screen.c b/src/gallium/drivers/etnaviv/etnaviv_screen.c index 0bd4400..8a0051d 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_screen.c +++ b/src/gallium/drivers/etnaviv/etnaviv_screen.c @@ -748,8 +748,8 @@ etna_screen_create(struct etna_device *dev, struct etna_gpu *gpu, etna_mesa_debug = debug_get_option_etna_mesa_debug(); - /* FIXME: Disable tile status for stability at the moment */ - etna_mesa_debug |= ETNA_DBG_NO_TS; + /* Disable autodisable for correct rendering with TS */ + etna_mesa_debug |= ETNA_DBG_NO_AUTODISABLE; screen->pipe = etna_pipe_new(gpu, ETNA_PIPE_3D); if (!screen->pipe) {