diff options
author | bunnei <bunneidev@gmail.com> | 2020-04-19 15:33:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-19 15:33:33 -0400 |
commit | 2ea7a70da0d08b9a252e1a9ecbd5b214552751bc (patch) | |
tree | fb95faa0246d46a133125fed2e28d029a291762b /src | |
parent | 10fb26f69c182bdaa2a04eae103b14c0f2f12c3a (diff) | |
parent | 636c8ab85b55b8ce510ef5a251fe66142d667e46 (diff) |
Merge pull request #3686 from lioncash/table
texture_cache/format_lookup_table: Fix incorrect green, blue, and alpha indices
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/texture_cache/format_lookup_table.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/format_lookup_table.cpp b/src/video_core/texture_cache/format_lookup_table.cpp index e151c26c4..25d2ee2e8 100644 --- a/src/video_core/texture_cache/format_lookup_table.cpp +++ b/src/video_core/texture_cache/format_lookup_table.cpp @@ -196,9 +196,9 @@ std::size_t FormatLookupTable::CalculateIndex(TextureFormat format, bool is_srgb ComponentType alpha_component) noexcept { const auto format_index = static_cast<std::size_t>(format); const auto red_index = static_cast<std::size_t>(red_component); - const auto green_index = static_cast<std::size_t>(red_component); - const auto blue_index = static_cast<std::size_t>(red_component); - const auto alpha_index = static_cast<std::size_t>(red_component); + const auto green_index = static_cast<std::size_t>(green_component); + const auto blue_index = static_cast<std::size_t>(blue_component); + const auto alpha_index = static_cast<std::size_t>(alpha_component); const std::size_t srgb_index = is_srgb ? 1 : 0; return format_index * PerFormat + |