summaryrefslogtreecommitdiff
path: root/include/tinyff/image
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-01-29 20:21:19 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-01-29 20:21:19 +1100
commit3989489a3a786aeb87dbdf30d6468f7fe7438759 (patch)
treed1136675c1a5f0166220f43e68d6eac2242c0764 /include/tinyff/image
parentf8ce98574f3f1e4f314de15be7fc66f307348618 (diff)
feat(png): Keep interlacing value in PNG context
Diffstat (limited to 'include/tinyff/image')
-rw-r--r--include/tinyff/image/png.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/tinyff/image/png.h b/include/tinyff/image/png.h
index c2c7db2..3937e8d 100644
--- a/include/tinyff/image/png.h
+++ b/include/tinyff/image/png.h
@@ -37,6 +37,9 @@ typedef struct {
uint8_t bit_depth;
uint8_t color_type;
+ // Interlace method
+ uint8_t interlace_method;
+
// Image data
ff_png_mode image_mode;