comparison gfxconv.c @ 443:f7c9d1619c74

Beginnings of IFF ILBM reader. Not functional, only chunk parsing, BMHD header chunk parsing and CMAP handling implemented.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 04 Nov 2012 06:41:51 +0200
parents 2a4de5fe4003
children a6d0e101cd16
comparison
equal deleted inserted replaced
442:a67600e186d0 443:f7c9d1619c74
61 }, 61 },
62 { 62 {
63 "PCX image file", "pcx", TRUE, TRUE, 63 "PCX image file", "pcx", TRUE, TRUE,
64 FFMT_IMAGE , IMGFMT_PCX, 64 FFMT_IMAGE , IMGFMT_PCX,
65 }, 65 },
66 {
67 "IFF ILBM file", "lbm", TRUE, FALSE,
68 FFMT_IMAGE , IMGFMT_ILBM,
69 },
70
66 { 71 {
67 "IFFMaster RAW image file", "araw", FALSE, TRUE, 72 "IFFMaster RAW image file", "araw", FALSE, TRUE,
68 FFMT_IMAGE , IMGFMT_ARAW, 73 FFMT_IMAGE , IMGFMT_ARAW,
69 }, 74 },
70 75