From 259e8e07ceb8f4729b9523ea08c4cd7ef2b4ad00 Mon Sep 17 00:00:00 2001 From: quou Date: Sun, 28 Jul 2024 13:52:06 +1000 Subject: make_white and make_black --- render.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'render.c') diff --git a/render.c b/render.c index 9eb3af0..86e61f7 100644 --- a/render.c +++ b/render.c @@ -120,6 +120,14 @@ Colour make_aliceblue(void) { return make_colour(0xf0f8ff, 0xff); } +Colour make_white(void) { + return make_colour(0xffffff, 0xff); +} + +Colour make_black(void) { + return make_colour(0x000000, 0xff); +} + Colour blend(Colour dst, Colour src) { int ima; ima = 0xff - src.a; -- cgit v1.2.3-54-g00ecf