Subscribers H/PC Guru Posts: | 5,192 |
Location: | United States | Status: | |
| Ok, let me know which screen resolution you want me to do, and it looks like I can change the code to accommodate that
// Lines ending with "//?" means that the bDRAMBuffer value is not confirmed.
// The iPAQ 38xx is reported with "kfLandscape" as there is no "kfInvertedLandscape" flag yet...
#define AMIGO { 240, 320, 640, -2, 16, kfDirect | kfDirect565 | kfLandscape, FALSE } //?
#define AERO_1500_CONTRAST { 240, 320, 80, -0, 2, kfDirect | kfLandscape | kfDirectInverted, FALSE } //?
#define AERO_1500_QUALITY { 240, 320, 160, -0, 4, kfDirect | kfLandscape | kfDirectInverted, FALSE } //?
#define AERO_2100 { 240, 320, 640, -2, 16, kfDirect | kfDirect565 | kfLandscape, FALSE } //?
#define CASIO_E125 { 240, 320, 2, 512, 16, kfDirect | kfDirect565, TRUE }
#define CASIO_EM500 { 240, 320, 2, 512, 16, kfDirect | kfDirect565, TRUE } //?
#define IPAQ_31xx { 240, 320, 160, -0, 4, kfDirect | kfLandscape | kfDirectInverted, FALSE } //?
#define IPAQ_36xx { 240, 320, 640, -2, 16, kfDirect | kfDirect565 | kfLandscape, FALSE }
#define IPAQ_38xx { 240, 320,-640, 2, 16, kfDirect | kfDirect565 | kfLandscape, FALSE }
#define JORNADA_525 { 240, 320, 1, 240, 8, kfPalette, FALSE } //?
#define JORNADA_54x { 240, 320, 2, 480, 16, kfDirect | kfDirect565, FALSE } //?
#define JORNADA_54x_PALETTE { 240, 320, 1, 240, 8, kfPalette, FALSE } //?
#define JORNADA_56x { 240, 320, 2, 480, 16, kfDirect | kfDirect565, FALSE } //?
#define SIMPLE_565 { 240, 320, 2, 480, 16, kfDirect | kfDirect565, TRUE }
#define SIMPLE_555 { 240, 320, 2, 480, 16, kfDirect | kfDirect555, TRUE }
#define SIMPLE_444 { 240, 320, 2, 480, 16, kfDirect | kfDirect444, TRUE }
#define SIMPLE_0888 { 240, 320, 4, 960, 32, kfDirect | kfDirect888, TRUE }
#define SIMPLE_PALETTE { 240, 320, 1, 240, 8, kfPalette, TRUE }
#define SIMPLE_MONO_1 { 240, 320, 0, 30, 1, kfDirect, TRUE }
#define SIMPLE_MONO_2 { 240, 320, 0, 60, 2, kfDirect, TRUE }
#define SIMPLE_MONO_4 { 240, 320, 0, 120, 4, kfDirect, TRUE }
#define SIMPLE_MONO_8 { 240, 320, 1, 240, 8, kfDirect, TRUE }
#define LANDSCAPE_565 { 240, 320, 480, -2, 16, kfDirect | kfDirect565, TRUE }
#define LANDSCAPE_555 { 240, 320, 480, -2, 16, kfDirect | kfDirect555, TRUE }
#define LANDSCAPE_444 { 240, 320, 480, -2, 16, kfDirect | kfDirect444, TRUE }
#define LANDSCAPE_0888 { 240, 320, 960, -4, 32, kfDirect | kfDirect888, TRUE }
#define LANDSCAPE_PALETTE { 240, 320, 240, -1, 8, kfPalette, TRUE }
#define LANDSCAPE_MONO_1 { 240, 320, 30, -0, 1, kfDirect, TRUE }
#define LANDSCAPE_MONO_2 { 240, 320, 60, -0, 2, kfDirect, TRUE }
#define LANDSCAPE_MONO_4 { 240, 320, 120, -0, 4, kfDirect, TRUE }
#define LANDSCAPE_MONO_8 { 240, 320, 240, -1, 8, kfDirect, TRUE } |