Philipp Wiesemann
85588ea040
Android: Fixed two warnings about unused variables.
2016-09-21 23:06:26 +02:00
Philipp Wiesemann
9581d4a585
Android: Fixed misleading warning in log output (thanks, Sylvain!).
...
Fixes Bugzilla #3418 .
2016-08-30 21:15:18 +02:00
Ryan C. Gordon
8f0af77354
android: implement audio capture support.
2016-08-11 22:04:49 -04:00
Philipp Wiesemann
58b323f192
Android: Fixed missing export of a JNI function (thanks, Andrii!).
...
Fixes Bugzilla #3393 .
2016-07-17 21:43:12 +02:00
Eric Wing
704298c0c2
Android: C89 cleanup to avoid warnings/errors since the default gcc mode on Android is still pre-C99.
2016-02-09 17:36:42 -08:00
Ryan C. Gordon
881ccccbcf
Android: Fixed up drop events for new interface.
2016-01-05 05:31:33 -05:00
Sam Lantinga
42065e785d
Updated copyright to 2016
2016-01-02 10:10:34 -08:00
Philipp Wiesemann
10daf1f4d3
Android: Removed three internal functions not used by SDL.
...
They were not needed internally since the switch to the common EGL backend.
Thanks to the SDL mailing list for pointing out that the functions seem unused.
2015-09-27 20:12:47 +02:00
Philipp Wiesemann
efad04c317
Android: Added check if Java method for APK expansion file exists.
2015-09-18 21:26:46 +02:00
Philipp Wiesemann
6e7c479ec2
Android: Fixed trying to read from APK expansion files without version hint set.
...
This also fixed overwriting the asset error message which is more useful if no
APK expansion files are available and the requested file was not found.
2015-09-17 22:30:24 +02:00
Philipp Wiesemann
92ca42d940
Android: Renamed SDLActivity's Java method used for APK expansion files.
...
The name was not correct.
2015-09-17 22:24:54 +02:00
Philipp Wiesemann
e8757e873e
Android: Changed return type of four JNI functions from int to jint.
2015-09-05 20:21:52 +02:00
Philipp Wiesemann
0e45984fa0
Fixed crash if initialization of EGL failed but was tried again later.
...
The internal function SDL_EGL_LoadLibrary() did not delete and remove a mostly
uninitialized data structure if loading the library first failed. A later try to
use EGL then skipped initialization and assumed it was previously successful
because the data structure now already existed. This led to at least one crash
in the internal function SDL_EGL_ChooseConfig() because a NULL pointer was
dereferenced to make a call to eglBindAPI().
2015-06-21 17:33:46 +02:00