comparison tools/lib64gfx.h @ 2116:b49d7cb20a73

Implement initial ECM support in charmap decoding.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 26 May 2019 02:45:44 +0300
parents 27cf33c3a646
children 05a6e00b09d0
comparison
equal deleted inserted replaced
2115:51b8826bd4c1 2116:b49d7cb20a73
51 // Different supported flags/modes 51 // Different supported flags/modes
52 enum 52 enum
53 { 53 {
54 D64_FMT_HIRES = 0x0000, // Hi-res 54 D64_FMT_HIRES = 0x0000, // Hi-res
55 D64_FMT_MC = 0x0001, // MultiColor 55 D64_FMT_MC = 0x0001, // MultiColor
56 D64_FMT_ILACE = 0x0002, // Interlace 56 D64_FMT_ECM = 0x0002, // ECM mode (applies only to character mode)
57 D64_FMT_FLI = 0x0004, // FLI 57 D64_FMT_MASK = 0x000f,
58 D64_FMT_CHAR = 0x0008, // Character mode 58
59 D64_FMT_BORDER = 0x0010, // Uses border area 59 D64_FMT_ILACE = 0x0010, // Interlace
60 D64_FMT_FLI = 0x0020, // FLI
61 D64_FMT_CHAR = 0x0040, // Character mode
62 D64_FMT_BORDER = 0x0080, // Uses border area
60 }; 63 };
61 64
62 65
63 // Different types of interlace 66 // Different types of interlace
64 enum 67 enum