diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-16 13:02:12 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-16 13:02:12 +1100 |
| commit | 133b1f8db912b57b5554853ab4fe87349997e15d (patch) | |
| tree | 238d1354aa0e89077eba324cddefd4590cc7c845 | |
| parent | 8c6559fc78ec7a60ebac978a48d0bdbae806aadd (diff) | |
feat(bmp): Add palette and pixels fields to ff_bmp_ctx structure
| -rw-r--r-- | include/tinyff/image/bmp.h | 3 |
1 files changed, 3 insertions, 0 deletions
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; |
