summaryrefslogtreecommitdiff
path: root/include/tinyff/image/bmp.h
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-06-08 10:24:03 +1000
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-06-08 10:24:03 +1000
commitc9f5da1d19e6ace5d6a7c650fe996f359e11d1a5 (patch)
treec5d61055549f1819d902e567f7227e0c3778300c /include/tinyff/image/bmp.h
parent62cbefa6a8fca583c6f600f1d7e24f0c61c91b1e (diff)
docs(headers): Clean up comments across public headers
Diffstat (limited to 'include/tinyff/image/bmp.h')
-rw-r--r--include/tinyff/image/bmp.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/tinyff/image/bmp.h b/include/tinyff/image/bmp.h
index 973706d..f56fdd5 100644
--- a/include/tinyff/image/bmp.h
+++ b/include/tinyff/image/bmp.h
@@ -28,7 +28,7 @@ typedef struct {
ff_stream *raw;
- uint32_t file_size; // tbh, i actually have no idea why this is needed
+ uint32_t file_size;
uint32_t data_offset;
uint32_t width;
@@ -50,11 +50,6 @@ typedef struct {
typedef ff_result (*ff_bmp_section_handler_ptr)(ff_ctx* ctx, uint8_t *buf, size_t len, ff_bmp_ctx* bmp_ctx);
typedef struct {
- // Even though the types in bitmaps are invisible (they don't have labels)
- // I'll just keep them in for the sake of being in
- // And I might just handle the section looping a bit differently
- // And their names will be what I saw in the spec
-
const char* type;
ff_bmp_section_handler_ptr handler;
} ff_bmp_section_handler;