Xcode-iOS/Demos/src/mixer.c


Log

Author Commit Date CI Message
Philipp Wiesemann c2cb0b0f 2016-09-30T23:31:24 iOS: Removed unused constant in demo.
Alex Szpakowski a8b033d7 2016-09-25T00:23:35 Update the code for the iOS demos to handle modern devices. Fixes bug #3337
Philipp Wiesemann f3ca4e4d 2016-04-01T21:14:49 iOS: Fixed compiling demos on C89 compilers.
Philipp Wiesemann e9ca5b28 2016-03-27T22:26:34 iOS: Replaced #import with #include in two demos. This extension to C is not required here and made the demos less portable.
Philipp Wiesemann 0e45984f 2015-06-21T17:33:46 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().