From 133b1f8db912b57b5554853ab4fe87349997e15d Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Mon, 16 Feb 2026 13:02:12 +1100 Subject: feat(bmp): Add palette and pixels fields to ff_bmp_ctx structure --- include/tinyff/image/bmp.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/tinyff/image') diff --git a/include/tinyff/image/bmp.h b/include/tinyff/image/bmp.h index 5f7462b..82edff3 100644 --- a/include/tinyff/image/bmp.h +++ b/include/tinyff/image/bmp.h @@ -30,6 +30,9 @@ typedef struct { uint32_t colors_used; uint32_t important_colors; + uint8_t* palette; + + uint8_t* pixels; } ff_bmp_ctx; -- cgit v1.2.3