From bb6f08f3c79efc7bb7877aca97cebd3dab8b7838 Mon Sep 17 00:00:00 2001 From: Clement Sibille Date: Tue, 5 Mar 2024 16:02:17 +0900 Subject: Implement PNG decompression This patch adds PNG decompression for images without interlacing and without alpha channel. Only basic image data is supported. Background, transparency, gamma, paletted images are not supported. --- lisiblepng/src/log.h | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 lisiblepng/src/log.h (limited to 'lisiblepng/src/log.h') diff --git a/lisiblepng/src/log.h b/lisiblepng/src/log.h deleted file mode 100644 index fba6820..0000000 --- a/lisiblepng/src/log.h +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef LISIBLE_PNG_LOG_H -#define LISIBLE_PNG_LOG_H - -#include - -#define LOG0(fmt) fprintf(stderr, fmt "\n") -#define LOGN(fmt, ...) fprintf(stderr, fmt "\n", __VA_ARGS__) - -#endif // LISIBLE_PNG_LOG_H -- cgit v1.2.3