comparison src/video/windib/SDL_dibvideo.h @ 1465:8dfa9a6d69a5

Updated WinCE support by Dmitry (with some tweaks) Converted the disk audio driver to SDL_RWops for portability
author Sam Lantinga <slouken@libsdl.org>
date Sat, 04 Mar 2006 08:24:35 +0000
parents bb6839704ed6
children 782fd950bd46 b0d021cf41b6
comparison
equal deleted inserted replaced
1464:af30090c0330 1465:8dfa9a6d69a5
44 #define NUM_MODELISTS 4 /* 8, 16, 24, and 32 bits-per-pixel */ 44 #define NUM_MODELISTS 4 /* 8, 16, 24, and 32 bits-per-pixel */
45 int SDL_nummodes[NUM_MODELISTS]; 45 int SDL_nummodes[NUM_MODELISTS];
46 SDL_Rect **SDL_modelist[NUM_MODELISTS]; 46 SDL_Rect **SDL_modelist[NUM_MODELISTS];
47 47
48 SDL_ScreenOrientation orientation; 48 SDL_ScreenOrientation orientation;
49 int invert; 49 #ifdef _WIN32_WCE
50 char hiresFix; // using hires mode without defining hires resource 50 int invert; /* do to remove, used by GAPI driver! */
51 char hiresFix; /* using hires mode without defining hires resource */
52 int supportRotation; /* for Pocket PC devices */
53 DWORD origRotation; /* for Pocket PC devices */
54 #endif
51 }; 55 };
52 /* Old variable names */ 56 /* Old variable names */
53 #define screen_bmp (this->hidden->screen_bmp) 57 #define screen_bmp (this->hidden->screen_bmp)
54 #define screen_pal (this->hidden->screen_pal) 58 #define screen_pal (this->hidden->screen_pal)
55 #define SDL_nummodes (this->hidden->SDL_nummodes) 59 #define SDL_nummodes (this->hidden->SDL_nummodes)