1.1 --- a/src/video/android/SDL_androidvideo.h Wed Oct 03 20:22:14 2012 -0700
1.2 +++ b/src/video/android/SDL_androidvideo.h Wed Oct 03 20:49:16 2012 -0700
1.3 @@ -24,6 +24,7 @@
1.4 #define _SDL_androidvideo_h
1.5
1.6 #include "SDL_mutex.h"
1.7 +#include "SDL_rect.h"
1.8 #include "../SDL_sysvideo.h"
1.9
1.10 /* Called by the JNI layer when the screen changes size or format */
1.11 @@ -31,6 +32,11 @@
1.12
1.13 /* Private display data */
1.14
1.15 +typedef struct SDL_VideoData
1.16 +{
1.17 + SDL_Rect textRect;
1.18 +} SDL_VideoData;
1.19 +
1.20 extern int Android_ScreenWidth;
1.21 extern int Android_ScreenHeight;
1.22 extern Uint32 Android_ScreenFormat;