Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 21:37:01 -0700] rev 5493
Do not break application's signal handler installed with SA_SIGINFO
Gleb Natapov to sdl
If application installs SIGINT/SIGTERM signal handler with
sigaction(SA_SIGINFO) syscall before initializing SDL, after
initialization
of SDL signal handler will be reinstalled without SA_SIGINFO flag which
brings havoc when the signal handler is called. The breakage is done by
SDL_QuitInit()/SDL_QuitQuit() function. They use signal() to detect that
signal handler is already installed even in sigaction() is available.
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 21:36:36 -0700] rev 5492
Do not break application's signal handler installed with SA_SIGINFO
Gleb Natapov to sdl
If application installs SIGINT/SIGTERM signal handler with
sigaction(SA_SIGINFO) syscall before initializing SDL, after
initialization
of SDL signal handler will be reinstalled without SA_SIGINFO flag which
brings havoc when the signal handler is called. The breakage is done by
SDL_QuitInit()/SDL_QuitQuit() function. They use signal() to detect that
signal handler is already installed even in sigaction() is available.
Sam Lantinga <slouken@libsdl.org> [Tue, 15 Mar 2011 19:37:38 -0700] rev 5491
Fixed error because intrin.h contains C++ code and can't be included in an extern "C" block.
Sam Lantinga <slouken@libsdl.org> [Mon, 14 Mar 2011 23:16:05 -0700] rev 5490
There's a function to do that... :)
Sam Lantinga <slouken@libsdl.org> [Mon, 14 Mar 2011 23:14:51 -0700] rev 5489
SDL will treat the functionality as unsupported if the functions aren't filled in.
Sam Lantinga <slouken@libsdl.org> [Mon, 14 Mar 2011 23:13:33 -0700] rev 5488
DirectFB driver update
Couriersud to Sam
the attached patch brings the DirectFB driver back in line with recent
SDL 1.3 developments.
Sam Lantinga <slouken@libsdl.org> [Mon, 14 Mar 2011 23:04:52 -0700] rev 5487
Delegate should use application: didFinishLaunchingWithOptions:
Vittorio G. to Sam
would it be possible to update the application delegate in
SDL_uikitappdelagate to the suggest new method
Sam Lantinga <slouken@libsdl.org> [Mon, 14 Mar 2011 10:58:35 -0700] rev 5486
Fixed typo
Sam Lantinga <slouken@libsdl.org> [Sun, 13 Mar 2011 19:06:43 -0700] rev 5485
Fixed crash if the update rectangles are not pre-clipped.
Sam Lantinga <slouken@libsdl.org> [Sun, 13 Mar 2011 11:18:35 -0700] rev 5484
Added the SDL_HINT_RENDER_SCALE_QUALITY hint, which defaults to nearest pixel sampling.