comparison src/video/aalib/SDL_aavideo.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
comparison
equal deleted inserted replaced
1894:c69cee13dd76 1895:c121d94672cb
34 #define _THIS SDL_VideoDevice *this 34 #define _THIS SDL_VideoDevice *this
35 35
36 #define SDL_NUMMODES 6 36 #define SDL_NUMMODES 6
37 37
38 /* Private display data */ 38 /* Private display data */
39 struct SDL_PrivateVideoData { 39 struct SDL_PrivateVideoData
40 SDL_Rect *SDL_modelist[SDL_NUMMODES+1]; 40 {
41 aa_context *context; 41 SDL_Rect *SDL_modelist[SDL_NUMMODES + 1];
42 aa_palette palette; 42 aa_context *context;
43 aa_renderparams *rparams; 43 aa_palette palette;
44 double x_ratio, y_ratio; 44 aa_renderparams *rparams;
45 double x_ratio, y_ratio;
45 int w, h; 46 int w, h;
46 SDL_mutex *mutex; 47 SDL_mutex *mutex;
47 int in_x11; 48 int in_x11;
48 void *buffer; 49 void *buffer;
49 }; 50 };
62 #define AA_in_x11 (this->hidden->in_x11) 63 #define AA_in_x11 (this->hidden->in_x11)
63 #define AA_w (this->hidden->w) 64 #define AA_w (this->hidden->w)
64 #define AA_h (this->hidden->h) 65 #define AA_h (this->hidden->h)
65 66
66 #endif /* _SDL_aavideo_h */ 67 #endif /* _SDL_aavideo_h */
68 /* vi: set ts=4 sw=4 expandtab: */