summaryrefslogtreecommitdiffstats
path: root/src/common/color.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-08-25 16:07:13 +0200
committerGitHub <noreply@github.com>2020-08-25 16:07:13 +0200
commitb798813eee1a75973d7ed6489800f7297f47b7dd (patch)
treeab35fd8285d06eea619e3af9ad2c6919f4fa7d80 /src/common/color.h
parentMerge pull request #4542 from ReinUsesLisp/gpu-init-base (diff)
parentcommon/color: Migrate code over to the Common namespace (diff)
downloadyuzu-b798813eee1a75973d7ed6489800f7297f47b7dd.tar
yuzu-b798813eee1a75973d7ed6489800f7297f47b7dd.tar.gz
yuzu-b798813eee1a75973d7ed6489800f7297f47b7dd.tar.bz2
yuzu-b798813eee1a75973d7ed6489800f7297f47b7dd.tar.lz
yuzu-b798813eee1a75973d7ed6489800f7297f47b7dd.tar.xz
yuzu-b798813eee1a75973d7ed6489800f7297f47b7dd.tar.zst
yuzu-b798813eee1a75973d7ed6489800f7297f47b7dd.zip
Diffstat (limited to 'src/common/color.h')
-rw-r--r--src/common/color.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/color.h b/src/common/color.h
index 381d6332e..bbcac858e 100644
--- a/src/common/color.h
+++ b/src/common/color.h
@@ -10,7 +10,7 @@
#include "common/swap.h"
#include "common/vector_math.h"
-namespace Color {
+namespace Common::Color {
/// Convert a 1-bit color component to 8 bit
[[nodiscard]] constexpr u8 Convert1To8(u8 value) {
@@ -268,4 +268,4 @@ inline void EncodeX24S8(u8 stencil, u8* bytes) {
bytes[3] = stencil;
}
-} // namespace Color
+} // namespace Common::Color