diff options
| author | 2020-07-21 00:52:27 -0400 | |
|---|---|---|
| committer | 2020-07-21 00:57:25 -0400 | |
| commit | e17fb5ee97dab16c73b017393b6544847e9aef67 (patch) | |
| tree | 05ac8d70e8516d27062f4940e64d905c95c2b6c5 /src/video_core/texture_cache | |
| parent | Merge pull request #4376 from ogniK5377/dark-wait-tree (diff) | |
| download | yuzu-e17fb5ee97dab16c73b017393b6544847e9aef67.tar.gz yuzu-e17fb5ee97dab16c73b017393b6544847e9aef67.tar.xz yuzu-e17fb5ee97dab16c73b017393b6544847e9aef67.zip | |
video_core: Remove unused variables
Silences several compiler warnings about unused variables.
Diffstat (limited to 'src/video_core/texture_cache')
| -rw-r--r-- | src/video_core/texture_cache/format_lookup_table.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/format_lookup_table.cpp b/src/video_core/texture_cache/format_lookup_table.cpp index f476f03b0..a5d82cf5c 100644 --- a/src/video_core/texture_cache/format_lookup_table.cpp +++ b/src/video_core/texture_cache/format_lookup_table.cpp | |||
| @@ -19,8 +19,6 @@ constexpr auto SNORM = ComponentType::SNORM; | |||
| 19 | constexpr auto UNORM = ComponentType::UNORM; | 19 | constexpr auto UNORM = ComponentType::UNORM; |
| 20 | constexpr auto SINT = ComponentType::SINT; | 20 | constexpr auto SINT = ComponentType::SINT; |
| 21 | constexpr auto UINT = ComponentType::UINT; | 21 | constexpr auto UINT = ComponentType::UINT; |
| 22 | constexpr auto SNORM_FORCE_FP16 = ComponentType::SNORM_FORCE_FP16; | ||
| 23 | constexpr auto UNORM_FORCE_FP16 = ComponentType::UNORM_FORCE_FP16; | ||
| 24 | constexpr auto FLOAT = ComponentType::FLOAT; | 22 | constexpr auto FLOAT = ComponentType::FLOAT; |
| 25 | constexpr bool C = false; // Normal color | 23 | constexpr bool C = false; // Normal color |
| 26 | constexpr bool S = true; // Srgb | 24 | constexpr bool S = true; // Srgb |