Panda3DS/include/colour.hpp
2023-02-01 00:34:58 +02:00

13 lines
No EOL
294 B
C++

#pragma once
#include "helpers.hpp"
// Helpers functions for converting colour channels between bit depths
namespace Colour {
inline static u8 convert4To8Bit(u8 c) {
return (c << 4) | c;
}
inline static u8 convert5To8Bit(u8 c) {
return (c << 3) | (c >> 2);
}
}