From 1640fa90962ca4b8ef7f9d799f9f9af92f1457b5 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Tue, 27 Jul 2021 19:33:31 -0700 Subject: [PATCH] Remove note about anisotropic filtering requiring edge LOD This was added because YAGCD's info on MAXANISO (near TX_SETMODE0 in Section 5.11.1) claims it's the case, but Extrems says it does work. I haven't tested anything myself, and dolphin still does not actually implement anisotropic filtering based on this field. --- Source/Core/VideoCommon/BPMemory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/BPMemory.h b/Source/Core/VideoCommon/BPMemory.h index 27ef97e35e..f127176e4c 100644 --- a/Source/Core/VideoCommon/BPMemory.h +++ b/Source/Core/VideoCommon/BPMemory.h @@ -765,7 +765,7 @@ enum class MaxAnsio template <> struct fmt::formatter : EnumFormatter { - formatter() : EnumFormatter({"1", "2 (requires edge LOD)", "4 (requires edge LOD)"}) {} + formatter() : EnumFormatter({"1", "2", "4"}) {} }; union TexMode0 @@ -796,7 +796,7 @@ struct fmt::formatter "Min filter: {}\n" "LOD type: {}\n" "LOD bias: {} ({})\n" - "Max aniso: {}\n" + "Max anisotropic filtering: {}\n" "LOD/bias clamp: {}", mode.wrap_s, mode.wrap_t, mode.mag_filter, mode.mipmap_filter, mode.min_filter, mode.diag_lod, mode.lod_bias, mode.lod_bias / 32.f, mode.max_aniso,