Browse Source
Merge pull request #4548 from lioncash/color
common/color: Migrate code over to the Common namespace
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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 |