diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-01-26 20:38:22 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-01-26 20:38:22 +1100 |
| commit | 245c07842e49da00c254b2ffb411763e71deaa67 (patch) | |
| tree | 979672c3b48e7346e561f1f153953efcdd1e601f /include/tinyff/image | |
| parent | d249266adfcbe24ec9fd9dd4967a84dd42b24507 (diff) | |
feat(png): Decompress IDAT using tinf uncompress (WIP)
Diffstat (limited to 'include/tinyff/image')
| -rw-r--r-- | include/tinyff/image/png.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
