summaryrefslogtreecommitdiff
path: root/src/colour.cc
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2026-01-02 22:42:31 +0100
committerJoel Klinghed <the_jk@spawned.biz>2026-01-02 22:42:31 +0100
commit6ed8f5151719fbc14ec0ac6d28a346d1f74cf2ca (patch)
treeebe7588e89e1aa2ae5376acf85f3a3a7b2ec7e10 /src/colour.cc
Initial commitHEADmain
Diffstat (limited to 'src/colour.cc')
-rw-r--r--src/colour.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/colour.cc b/src/colour.cc
new file mode 100644
index 0000000..e9df340
--- /dev/null
+++ b/src/colour.cc
@@ -0,0 +1,15 @@
+#include "colour.hh"
+
+#include <cstdint>
+
+Colour::Colour() : argb(0) {}
+
+Colour::Colour(uint32_t argb) : argb(argb) {}
+
+Colour::Colour(uint8_t r, uint8_t g, uint8_t b)
+ : argb(0xff000000 | (static_cast<uint32_t>(r) << 16) |
+ (static_cast<uint32_t>(g) << 8) | b) {}
+
+Colour::Colour(uint8_t a, uint8_t r, uint8_t g, uint8_t b)
+ : argb((static_cast<uint32_t>(a) << 24) | (static_cast<uint32_t>(r) << 16) |
+ (static_cast<uint32_t>(g) << 8) | b) {}