From ef4a2773e90ebc6ed7ad66bcfd4e30165c04fb93 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Mon, 16 Mar 2026 20:59:04 +0200 Subject: feat: Implement circle and rename square --- RGBImage.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'RGBImage.h') diff --git a/RGBImage.h b/RGBImage.h index ba32785..b54b72b 100644 --- a/RGBImage.h +++ b/RGBImage.h @@ -5,8 +5,7 @@ #include typedef uint8_t byte; -typedef uint16_t byte2; -typedef uint32_t byte4; +typedef uint32_t color; typedef struct ARGB { byte a; @@ -15,7 +14,7 @@ typedef struct ARGB { byte b; } ARGB; -void ARGB_set(ARGB* rgb, byte4 color); +void ARGB_set(ARGB* rgb, color color); void ARGB_merge(ARGB* bottom, ARGB top); typedef struct RGBImage { -- cgit v1.2.3