From: Timothy Arceri Date: Tue, 7 May 2019 00:18:54 +0000 (+1000) Subject: radeonsi: add an AMD_TEX_ANISO environment variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=024232b26c203d593533e488b5131e7a787b2ac1;p=mesa.git radeonsi: add an AMD_TEX_ANISO environment variable This brings it inline with the recently added AMD_DEBUG. Reviewed-by: Marek Olšák Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109619 --- diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index b0e0ca7af05..4d36fd46a9b 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -950,6 +950,10 @@ struct pipe_screen *radeonsi_screen_create(struct radeon_winsys *ws, sizeof(struct si_transfer), 64); sscreen->force_aniso = MIN2(16, debug_get_num_option("R600_TEX_ANISO", -1)); + if (sscreen->force_aniso == -1) { + sscreen->force_aniso = MIN2(16, debug_get_num_option("AMD_TEX_ANISO", -1)); + } + if (sscreen->force_aniso >= 0) { printf("radeonsi: Forcing anisotropy filter to %ix\n", /* round down to a power of two */