Mercurial > sdl-ios-xcode
comparison src/video/android/SDL_androidvideo.h @ 4998:a514bfe6952a
The window is changed to reflect the actual screen dimensions, for now.
Implemented SDL_SetWindowTitle(), which turned out to be fairly complex
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 13 Jan 2011 15:10:17 -0800 |
parents | 55b82067815b |
children | 77df56570442 |
comparison
equal
deleted
inserted
replaced
4997:a21501393bef | 4998:a514bfe6952a |
---|---|
27 #include "../SDL_sysvideo.h" | 27 #include "../SDL_sysvideo.h" |
28 | 28 |
29 /* Called by the JNI layer when the screen changes size or format */ | 29 /* Called by the JNI layer when the screen changes size or format */ |
30 extern void Android_SetScreenResolution(int width, int height, Uint32 format); | 30 extern void Android_SetScreenResolution(int width, int height, Uint32 format); |
31 | 31 |
32 /* Private display data */ | |
33 | |
34 extern int Android_ScreenWidth; | |
35 extern int Android_ScreenHeight; | |
36 extern Uint32 Android_ScreenFormat; | |
37 | |
32 #endif /* _SDL_androidvideo_h */ | 38 #endif /* _SDL_androidvideo_h */ |
33 | 39 |
34 /* vi: set ts=4 sw=4 expandtab: */ | 40 /* vi: set ts=4 sw=4 expandtab: */ |