From 245c07842e49da00c254b2ffb411763e71deaa67 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Mon, 26 Jan 2026 20:38:22 +1100 Subject: feat(png): Decompress IDAT using tinf uncompress (WIP) --- include/tinyff/image/png.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/tinyff/image/png.h') diff --git a/include/tinyff/image/png.h b/include/tinyff/image/png.h index 0b2ce34..c195951 100644 --- a/include/tinyff/image/png.h +++ b/include/tinyff/image/png.h @@ -11,6 +11,9 @@ #include "tinyff/common.h" #include "tinyff/stream.h" +// External +#include "ext/tinf.h" + static const unsigned char PNG_SIGNATURE[8] = { 0x89, 'P', 'N', 'G', 0x0D, 0x0A, 0x1A, 0x0A -- cgit v1.2.3