From: Marek Olšák Date: Thu, 7 Apr 2016 13:34:45 +0000 (+0200) Subject: gallium/radeon: fix maximum texture anisotropy setup X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a98be001f06ae2d50d444d1103cc15b67502a14;p=mesa.git gallium/radeon: fix maximum texture anisotropy setup We were overdoing it for non-power-of-two values. Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h index cb8a34bf4ec..85c4ec0d6e6 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.h +++ b/src/gallium/drivers/radeon/r600_pipe_common.h @@ -644,11 +644,15 @@ static inline bool r600_get_strmout_en(struct r600_common_context *rctx) static inline unsigned r600_tex_aniso_filter(unsigned filter) { - if (filter <= 1) return 0; - if (filter <= 2) return 1; - if (filter <= 4) return 2; - if (filter <= 8) return 3; - /* else */ return 4; + if (filter < 2) + return 0; + if (filter < 4) + return 1; + if (filter < 8) + return 2; + if (filter < 16) + return 3; + return 4; } static inline unsigned r600_wavefront_size(enum radeon_family family)