Browse Source
Merge pull request #3686 from lioncash/table
texture_cache/format_lookup_table: Fix incorrect green, blue, and alpha indices
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
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 + |
|
|
|
|