kc3-lang/SDL/src/video/x11

Branch :


Log

Author Commit Date CI Message
ace1e98a 2013-08-29 15:02:32 Fixes bug #2040, prepare SDL_GL_CONTEXT_EGL for deprecation on v2.1 SDL_GL_CONTEXT_EGL = 1 is now internally treated as profile_mask = SDL_GL_CONTEXT_PROFILE_ES
e07d7e64 2013-08-29 08:30:21 Christoph Mallon: Replace strlen(x) == 0 (O(n)) by x[0] == '\0' (O(1)).
f79fc33a 2013-08-29 08:29:21 Christoph Mallon: Remove pointless if (x) before SDL_free(x)
3d217ed7 2013-08-21 10:07:48 Fixed crash if the IC isn't set up for some reason (bad X11 locale?)
6107705a 2013-08-21 10:34:32 Fix a couple of warnings
2490166d 2013-08-21 10:12:16 Fixes for -Wdeclaration-after-statement
1e49b1ed 2013-08-21 09:47:10 OCD fixes: Adds a space after /* (glory to regular expressions!)
695344d1 2013-08-21 09:43:09 OCD fixes: Adds a space before */
24006be2 2013-08-20 20:31:57 Fixed compiler warning.
0eeb76d8 2013-08-19 16:29:46 Fixes bug #2037, common EGL code for Android and X11
67367be0 2013-08-12 22:00:21 Don't print "unrecognized key" message for an X11 keycode of 0. This can happen with composed characters.
dad42067 2013-08-12 11:13:50 Fixes #2022, do not resume on Android when surfaceChanged If the app is in landscape mode and the user presses the power button, a pause is followed immediately by a surfaceChanged event because the lock screen is shown in portrait mode. This triggers a "false" resume. So, we just pause and resume following the onWindowFocusChanged events. Also, wait for SDL_APP_WILLENTERBACKGROUND and SDL_APP_DIDENTERBACKGROUND before blocking the event pump.