author | Sam Lantinga |
Sun, 02 Feb 2014 00:53:27 -0800 | |
changeset 8149 | 681eb46b8ac4 |
parent 8093 | b43765095a6f |
child 9314 | 8d826bc39a45 |
permissions | -rw-r--r-- |
paul@4701 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@8149 | 3 |
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org> |
paul@4701 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
paul@4701 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
paul@4701 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
paul@4701 | 20 |
*/ |
icculus@8093 | 21 |
#include "../../SDL_internal.h" |
paul@4701 | 22 |
|
paul@4701 | 23 |
#ifndef _SDL_androidvideo_h |
paul@4701 | 24 |
#define _SDL_androidvideo_h |
paul@4701 | 25 |
|
gabomdq@6330 | 26 |
#include "SDL_mutex.h" |
slouken@6555 | 27 |
#include "SDL_rect.h" |
paul@4701 | 28 |
#include "../SDL_sysvideo.h" |
paul@4701 | 29 |
|
slouken@4981 | 30 |
/* Called by the JNI layer when the screen changes size or format */ |
slouken@4981 | 31 |
extern void Android_SetScreenResolution(int width, int height, Uint32 format); |
slouken@4981 | 32 |
|
slouken@4998 | 33 |
/* Private display data */ |
slouken@4998 | 34 |
|
slouken@6555 | 35 |
typedef struct SDL_VideoData |
slouken@6555 | 36 |
{ |
slouken@6555 | 37 |
SDL_Rect textRect; |
slouken@6555 | 38 |
} SDL_VideoData; |
slouken@6555 | 39 |
|
slouken@4998 | 40 |
extern int Android_ScreenWidth; |
slouken@4998 | 41 |
extern int Android_ScreenHeight; |
slouken@4998 | 42 |
extern Uint32 Android_ScreenFormat; |
gabomdq@6330 | 43 |
extern SDL_sem *Android_PauseSem, *Android_ResumeSem; |
slouken@5001 | 44 |
extern SDL_Window *Android_Window; |
slouken@4998 | 45 |
|
gabomdq@6330 | 46 |
|
slouken@4981 | 47 |
#endif /* _SDL_androidvideo_h */ |
paul@4701 | 48 |
|
paul@4701 | 49 |
/* vi: set ts=4 sw=4 expandtab: */ |