zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SDL_android.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "SDL_config.h"
22 
23 /* Set up for C function definitions, even when using C++ */
24 #ifdef __cplusplus
25 /* *INDENT-OFF* */
26 extern "C" {
27 /* *INDENT-ON* */
28 #endif
29 
30 #include <EGL/eglplatform.h>
31 #include <android/native_window_jni.h>
32 
33 #include "SDL_rect.h"
34 
35 /* Interface from the SDL library into the Android Java activity */
36 /* extern SDL_bool Android_JNI_CreateContext(int majorVersion, int minorVersion, int red, int green, int blue, int alpha, int buffer, int depth, int stencil, int buffers, int samples);
37 extern SDL_bool Android_JNI_DeleteContext(void); */
38 extern void Android_JNI_SwapWindow();
39 extern void Android_JNI_SetActivityTitle(const char *title);
41 extern void Android_JNI_ShowTextInput(SDL_Rect *inputRect);
42 extern void Android_JNI_HideTextInput();
43 extern ANativeWindow* Android_JNI_GetNativeWindow(void);
44 
45 /* Audio support */
46 extern int Android_JNI_OpenAudioDevice(int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames);
47 extern void* Android_JNI_GetAudioBuffer();
48 extern void Android_JNI_WriteAudioBuffer();
49 extern void Android_JNI_CloseAudioDevice();
50 
51 #include "SDL_rwops.h"
52 
53 int Android_JNI_FileOpen(SDL_RWops* ctx, const char* fileName, const char* mode);
56 size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, size_t size, size_t maxnum);
57 size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer, size_t size, size_t num);
59 
60 /* Clipboard support */
61 int Android_JNI_SetClipboardText(const char* text);
64 
65 /* Power support */
66 int Android_JNI_GetPowerInfo(int* plugged, int* charged, int* battery, int* seconds, int* percent);
67 
68 /* Threads */
69 #include <jni.h>
70 JNIEnv *Android_JNI_GetEnv(void);
71 int Android_JNI_SetupThread(void);
72 
73 /* Generic messages */
74 int Android_JNI_SendMessage(int command, int param);
75 
76 /* Ends C function definitions when using C++ */
77 #ifdef __cplusplus
78 /* *INDENT-OFF* */
79 }
80 /* *INDENT-ON* */
81 #endif
82 
83 /* vi: set ts=4 sw=4 expandtab: */
int Android_JNI_FileClose(SDL_RWops *ctx)
GLenum GLint param
Definition: gl2ext.h:1491
int Android_JNI_SendMessage(int command, int param)
void Android_JNI_ShowTextInput(SDL_Rect *inputRect)
SDL_bool Android_JNI_HasClipboardText()
SDL_bool
Definition: SDL_stdinc.h:116
SDL_bool Android_JNI_GetAccelerometerValues(float values[3])
void Android_JNI_SetActivityTitle(const char *title)
char * Android_JNI_GetClipboardText()
void Android_JNI_HideTextInput()
int Android_JNI_FileOpen(SDL_RWops *ctx, const char *fileName, const char *mode)
int Android_JNI_SetupThread(void)
EGLContext EGLenum EGLClientBuffer buffer
Definition: eglext.h:87
void Android_JNI_CloseAudioDevice()
int Android_JNI_GetPowerInfo(int *plugged, int *charged, int *battery, int *seconds, int *percent)
size_t Android_JNI_FileWrite(SDL_RWops *ctx, const void *buffer, size_t size, size_t num)
void * Android_JNI_GetAudioBuffer()
GLuint num
Definition: glew.h:2631
ANativeWindow * Android_JNI_GetNativeWindow(void)
GLintptr offset
Definition: glew.h:1668
size_t Android_JNI_FileRead(SDL_RWops *ctx, void *buffer, size_t size, size_t maxnum)
void Android_JNI_WriteAudioBuffer()
int Android_JNI_SetClipboardText(const char *text)
int Android_JNI_OpenAudioDevice(int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames)
int64_t Sint64
A signed 64-bit integer type.
Definition: SDL_stdinc.h:150
JNIEnv * Android_JNI_GetEnv(void)
GLenum mode
Definition: glew.h:2394
Sint64 Android_JNI_FileSeek(SDL_RWops *ctx, Sint64 offset, int whence)
A rectangle, with the origin at the upper left.
Definition: SDL_rect.h:63
GLint GLsizei const GLuint64 * values
Definition: glew.h:3473
void Android_JNI_SwapWindow()
Sint64 Android_JNI_FileSize(SDL_RWops *ctx)
GLsizei size
Definition: gl2ext.h:1467
EGLContext ctx
Definition: eglext.h:87