diff options
| author | Léo Lam <leo@leolam.fr> | 2021-07-29 02:02:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-29 02:02:30 +0200 |
| commit | 11d126965aa6ff91ac3adcaa3cfbbfff2d2b5653 (patch) | |
| tree | 1da34b7fe26a063c403c44c6dc3a2fcf9e4bdb5e /Source/Core/VideoCommon | |
| parent | 0553b4a2415957a2eeec306b16908126e91faf68 (diff) | |
| parent | 1640fa90962ca4b8ef7f9d799f9f9af92f1457b5 (diff) | |
Merge pull request #9967 from Pokechu22/max-aniso-note
Remove note about anisotropic filtering requiring edge LOD
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/BPMemory.h | 4 |
1 files 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<MaxAnsio> : EnumFormatter<MaxAnsio::Four> { - 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<TexMode0> "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, |
