Mercurial > sdl-ios-xcode
comparison src/video/gem/SDL_gemvideo.h @ 557:0ce5a68278fd
Updated Atari port for new system headers (thanks Patrice!)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 07 Dec 2002 06:54:47 +0000 |
parents | f6ffac90895c |
children | 028e03e273c8 |
comparison
equal
deleted
inserted
replaced
556:08588ee79a67 | 557:0ce5a68278fd |
---|---|
54 void *screen; /* Screen address */ | 54 void *screen; /* Screen address */ |
55 Uint32 red, green, blue, alpha; /* Screen components */ | 55 Uint32 red, green, blue, alpha; /* Screen components */ |
56 Uint32 screensize; | 56 Uint32 screensize; |
57 MFDB src_mfdb, dst_mfdb; /* VDI MFDB for bitblt */ | 57 MFDB src_mfdb, dst_mfdb; /* VDI MFDB for bitblt */ |
58 short blit_coords[8]; /* Coordinates for bitblt */ | 58 short blit_coords[8]; /* Coordinates for bitblt */ |
59 /* Gem infos */ | 59 /* GEM infos */ |
60 short ap_id; /* AES handle */ | |
61 short desk_x, desk_y; /* Desktop properties */ | 60 short desk_x, desk_y; /* Desktop properties */ |
62 short desk_w, desk_h; | 61 short desk_w, desk_h; |
63 short win_handle; /* Our window handle */ | 62 short win_handle; /* Our window handle */ |
64 void *buffer; /* Our shadow buffer */ | 63 void *buffer; /* Our shadow buffer */ |
65 int window_type; /* Window type */ | 64 int window_type; /* Window type */ |
90 #define VDI_alphamask (this->hidden->alpha) | 89 #define VDI_alphamask (this->hidden->alpha) |
91 #define VDI_screensize (this->hidden->screensize) | 90 #define VDI_screensize (this->hidden->screensize) |
92 #define VDI_src_mfdb (this->hidden->src_mfdb) | 91 #define VDI_src_mfdb (this->hidden->src_mfdb) |
93 #define VDI_dst_mfdb (this->hidden->dst_mfdb) | 92 #define VDI_dst_mfdb (this->hidden->dst_mfdb) |
94 #define VDI_blit_coords (this->hidden->blit_coords) | 93 #define VDI_blit_coords (this->hidden->blit_coords) |
95 #define GEM_ap_id (this->hidden->ap_id) | 94 |
96 #define GEM_desk_x (this->hidden->desk_x) | 95 #define GEM_desk_x (this->hidden->desk_x) |
97 #define GEM_desk_y (this->hidden->desk_y) | 96 #define GEM_desk_y (this->hidden->desk_y) |
98 #define GEM_desk_w (this->hidden->desk_w) | 97 #define GEM_desk_w (this->hidden->desk_w) |
99 #define GEM_desk_h (this->hidden->desk_h) | 98 #define GEM_desk_h (this->hidden->desk_h) |
100 #define GEM_handle (this->hidden->win_handle) | 99 #define GEM_handle (this->hidden->win_handle) |