kc3-lang/SDL/src/render

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
3e2930de 2013-08-29 08:29:51 Christoph Mallon: Remove pointless if (x) before SDL_FreeSurface(x)
f79fc33a 2013-08-29 08:29:21 Christoph Mallon: Remove pointless if (x) before SDL_free(x)
f60bcf8b 2013-08-22 17:26:22 Fix warning in GL ES2 renderer
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 */
552b04c5 2013-08-20 20:34:40 More non C89 compliant comments
b4426769 2013-08-19 11:02:44 Fixed leaking of pixel shader object in D3D renderer (thanks, Peter!). Fixes Bugzilla #2047.
1455a947 2013-08-17 17:14:15 Fixed Windows build
6995ff18 2013-08-17 09:54:30 Do full state initialization in D3D_Reset(), this fixes blend mode issues when resizing the window on Windows 8.
bb2671b7 2013-08-16 14:38:04 Android quirk:Some devices don't report GL_OES_framebuffer_object but support it
4cb0ead7 2013-08-16 12:51:29 Patched to compile.
02868b69 2013-08-16 13:37:27 [Bug 2042] OpenGL ES renderer tries to load OES functions unconditionally Also, fail more gracefully when creating texture to avoid double free errors.
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.