Merge pull request #9967 from Pokechu22/max-aniso-note

Remove note about anisotropic filtering requiring edge LOD
This commit is contained in:
Léo Lam 2021-07-29 02:02:30 +02:00 committed by GitHub
commit 11d126965a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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,