Mercurial > sdl-ios-xcode
comparison src/video/ataricommon/SDL_atarieddi_s.h @ 1895:c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 10 Jul 2006 21:04:37 +0000 |
parents | d910939febfa |
children | 99210400e8b9 |
comparison
equal
deleted
inserted
replaced
1894:c69cee13dd76 | 1895:c121d94672cb |
---|---|
31 #define EDDI_10 (0x0100) | 31 #define EDDI_10 (0x0100) |
32 #define EDDI_11 (0x0110) | 32 #define EDDI_11 (0x0110) |
33 | 33 |
34 /* Screen format */ | 34 /* Screen format */ |
35 | 35 |
36 enum { | 36 enum |
37 VDI_FORMAT_UNKNOWN=-1, | 37 { |
38 VDI_FORMAT_INTER=0, /* Interleaved bitplanes */ | 38 VDI_FORMAT_UNKNOWN = -1, |
39 VDI_FORMAT_VDI=1, /* VDI independent */ | 39 VDI_FORMAT_INTER = 0, /* Interleaved bitplanes */ |
40 VDI_FORMAT_PACK=2 /* Packed pixels */ | 40 VDI_FORMAT_VDI = 1, /* VDI independent */ |
41 VDI_FORMAT_PACK = 2 /* Packed pixels */ | |
41 }; | 42 }; |
42 | 43 |
43 /* CLUT types */ | 44 /* CLUT types */ |
44 enum { | 45 enum |
45 VDI_CLUT_NONE=0, /* Monochrome mode */ | 46 { |
46 VDI_CLUT_HARDWARE, /* <256 colours mode */ | 47 VDI_CLUT_NONE = 0, /* Monochrome mode */ |
47 VDI_CLUT_SOFTWARE /* True colour mode */ | 48 VDI_CLUT_HARDWARE, /* <256 colours mode */ |
49 VDI_CLUT_SOFTWARE /* True colour mode */ | |
48 }; | 50 }; |
49 | 51 |
50 /*--- Functions ---*/ | 52 /*--- Functions ---*/ |
51 | 53 |
52 unsigned long Atari_get_EdDI_version(void *function_pointer); | 54 unsigned long Atari_get_EdDI_version(void *function_pointer); |
53 | 55 |
54 #endif /* _SDL_Atari_eddi_s_h */ | 56 #endif /* _SDL_Atari_eddi_s_h */ |
57 /* vi: set ts=4 sw=4 expandtab: */ |