From d0eb284598e871d2b2c81c5f706b4bddebcc249b Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Mon, 27 Feb 2023 19:50:18 +0200 Subject: [PATCH] [Colour.hpp] Support for 6 to 8-bit colour --- include/colour.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/colour.hpp b/include/colour.hpp index 67ee15b2..4d02b80f 100644 --- a/include/colour.hpp +++ b/include/colour.hpp @@ -3,11 +3,15 @@ // Helpers functions for converting colour channels between bit depths namespace Colour { - inline static u8 convert4To8Bit(u8 c) { + inline static constexpr u8 convert4To8Bit(u8 c) { return (c << 4) | c; } - inline static u8 convert5To8Bit(u8 c) { + inline static constexpr u8 convert5To8Bit(u8 c) { return (c << 3) | (c >> 2); } + + inline static constexpr u8 convert6To8Bit(u8 c) { + return (c << 2) | (c >> 4); + } } \ No newline at end of file