Added missing function prototype and changed its signature.

Signature was changed to prevent a header for SDL_GLContext.
This commit is contained in:
Philipp Wiesemann 2013-08-04 23:38:25 +02:00
parent 2ec969cb57
commit 7e69cee4c5
3 changed files with 4 additions and 3 deletions

View file

@ -364,9 +364,9 @@ SDL_bool Android_JNI_CreateContext(int majorVersion, int minorVersion,
return success ? SDL_TRUE : SDL_FALSE;
}
SDL_bool Android_JNI_DeleteContext(SDL_GLContext context)
SDL_bool Android_JNI_DeleteContext(void)
{
/* There's only one context, so the parameter is ignored for now */
/* There's only one context, so no parameter for now */
JNIEnv *env = Android_JNI_GetEnv();
(*env)->CallStaticVoidMethod(env, mActivityClass, midDeleteGLContext);
return SDL_TRUE;

View file

@ -31,6 +31,7 @@ extern "C" {
/* Interface from the SDL library into the Android Java activity */
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);
extern SDL_bool Android_JNI_DeleteContext(void);
extern void Android_JNI_SwapWindow();
extern void Android_JNI_SetActivityTitle(const char *title);
extern SDL_bool Android_JNI_GetAccelerometerValues(float values[3]);

View file

@ -120,7 +120,7 @@ void
Android_GL_DeleteContext(_THIS, SDL_GLContext context)
{
if (context) {
Android_JNI_DeleteContext(context);
Android_JNI_DeleteContext();
}
}