summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-04-16 04:26:47 +0200
committerLioncash <mathew1800@gmail.com>2020-04-16 04:29:51 +0200
commit24620bc4ea9ca59a757b7f07ca912f6645c5b8ef (patch)
treee01193f451023c6fb9b75be760eea4d6d5fa8e5d
parentdecoder/image: Fix incorrect G24R8 component sizes in GetComponentSize() (diff)
downloadyuzu-24620bc4ea9ca59a757b7f07ca912f6645c5b8ef.tar
yuzu-24620bc4ea9ca59a757b7f07ca912f6645c5b8ef.tar.gz
yuzu-24620bc4ea9ca59a757b7f07ca912f6645c5b8ef.tar.bz2
yuzu-24620bc4ea9ca59a757b7f07ca912f6645c5b8ef.tar.lz
yuzu-24620bc4ea9ca59a757b7f07ca912f6645c5b8ef.tar.xz
yuzu-24620bc4ea9ca59a757b7f07ca912f6645c5b8ef.tar.zst
yuzu-24620bc4ea9ca59a757b7f07ca912f6645c5b8ef.zip
-rw-r--r--src/video_core/shader/decode/image.cpp6
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 7f94dacc8..08ebca38b 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};
}
}