diff options
author | Lioncash <mathew1800@gmail.com> | 2020-04-15 22:26:47 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-04-15 22:29:51 -0400 |
commit | 24620bc4ea9ca59a757b7f07ca912f6645c5b8ef (patch) | |
tree | e01193f451023c6fb9b75be760eea4d6d5fa8e5d /src | |
parent | b178c9a3492ea6c0db63f708beecd3dfb3d921fe (diff) |
decode/image: Fix typo in assert in GetComponentSize()
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/shader/decode/image.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/shader/decode/image.cpp b/src/video_core/shader/decode/image.cpp index 7f94dacc8a..08ebca38bb 100644 --- a/src/video_core/shader/decode/image.cpp +++ b/src/video_core/shader/decode/image.cpp @@ -119,7 +119,7 @@ ComponentType GetComponentType(Tegra::Engines::SamplerDescriptor descriptor, } break; } - UNIMPLEMENTED_MSG("texture format not implement={}", format); + UNIMPLEMENTED_MSG("Texture format not implemented={}", format); return ComponentType::FLOAT; } @@ -212,7 +212,7 @@ u32 GetComponentSize(TextureFormat format, std::size_t component) { case TextureFormat::G4R4: return (component == 0 || component == 1) ? 4 : 0; default: - UNIMPLEMENTED_MSG("texture format not implement={}", format); + UNIMPLEMENTED_MSG("Texture format not implemented={}", format); return 0; } } @@ -249,7 +249,7 @@ std::size_t GetImageComponentMask(TextureFormat format) { case TextureFormat::R1: return std::size_t{R}; default: - UNIMPLEMENTED_MSG("texture format not implement={}", format); + UNIMPLEMENTED_MSG("Texture format not implemented={}", format); return std::size_t{R | G | B | A}; } } |