comparison src/libgfx.h @ 1291:2c4acbc3e7bf

More work on libgfx etc.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Aug 2017 18:56:09 +0300
parents e7dc9bb9777e
children e03f20d0f785
comparison
equal deleted inserted replaced
1290:e7dc9bb9777e 1291:2c4acbc3e7bf
32 enum 32 enum
33 { 33 {
34 DM_IFMT_PALETTE, 34 DM_IFMT_PALETTE,
35 DM_IFMT_RGB, 35 DM_IFMT_RGB,
36 DM_IFMT_RGBA, 36 DM_IFMT_RGBA,
37 DM_IFMT_RGB_PLANE,
38 }; 37 };
39 38
40 39
41 enum 40 enum
42 { 41 {
67 typedef struct 66 typedef struct
68 { 67 {
69 int format; 68 int format;
70 int scaleX, scaleY; 69 int scaleX, scaleY;
71 int nplanes, bpp; 70 int nplanes, bpp;
72 BOOL interleave, paletted; 71 BOOL planar, paletted;
73 } DMImageConvSpec; 72 } DMImageConvSpec;
74 73
75 74
76 typedef struct 75 typedef struct
77 { 76 {