summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2025-12-19 14:38:54 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2025-12-19 14:38:54 +1100
commitd81f6baf317b3d8abf2062209271b9db2c995c3d (patch)
tree82249cc9bd935725829f78c56ee15564fd7f291f
parentf58108d688d89989cfbe278c0dc945de6e26f337 (diff)
dxgen(png): Add details for ff_png_chunk_type enum
-rw-r--r--.vscode/settings.json6
-rw-r--r--include/tinyff/image/png.h6
2 files changed, 12 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..5f8c6f7
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,6 @@
+{
+ "cSpell.words": [
+ "IDAT",
+ "PLTE"
+ ]
+} \ No newline at end of file
diff --git a/include/tinyff/image/png.h b/include/tinyff/image/png.h
index e04fbdd..f26c7a1 100644
--- a/include/tinyff/image/png.h
+++ b/include/tinyff/image/png.h
@@ -55,6 +55,12 @@ typedef struct {
*
* Enumerates the different types of PNG chunks.
*
+ * @details
+ * - FF_PNG_CHUNK_TYPE_IHDR: Image Header Chunk
+ * - FF_PNG_CHUNK_TYPE_PLTE: Palette Chunk
+ * - FF_PNG_CHUNK_TYPE_IDAT: Image Data Chunk
+ * - FF_PNG_CHUNK_TYPE_IEND: Image End Chunk
+ *
* @see ff_png_chunk
*/
typedef enum {