Andreas Schiffler <aschiffler@ferzkopp.net> [Wed, 13 Feb 2013 23:10:29 -0800] rev 6875
Add tests to SDLtest suite
Sam Lantinga <slouken@libsdl.org> [Wed, 13 Feb 2013 21:22:29 -0800] rev 6874
Added SDL_bits.h to the Xcode projects
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Wed, 13 Feb 2013 17:19:21 -0800] rev 6873
New SDL_MSBIndex, updated VS projects, cleanup gamecontroller.
- Updated Visual Studio 2010 project with SDL 2.0 library names
- Don't use a 256 byte LUT, but rather <32 bytes of data on the stack.
- Cleanups in SDL_gamecontroller.h
Andreas Schiffler <aschiffler@ferzkopp.net> [Tue, 12 Feb 2013 22:23:42 -0800] rev 6872
Fix fuzzer random boundary functions; add tests for fuzzer
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Tue, 12 Feb 2013 17:07:21 -0800] rev 6871
Check bounds in SDL_IsGameController. Switch two functions to SDL_bool.
Switches SDL_GameControllerGetAttached and SDL_IsGameController to
return SDL_bool, instead of int.
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Tue, 12 Feb 2013 16:17:24 -0800] rev 6870
Regenerate configure to enable dbus
The configure script was out of date - re-running autogen.sh adds dbus
support.
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Tue, 12 Feb 2013 14:53:47 -0800] rev 6869
Fix another non-C90 variable declaration
This fixes a build issue with C variable declarations in the tests, for
VisualC.
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Tue, 12 Feb 2013 12:29:08 -0800] rev 6868
Fix linker error for Win32 tests.
This adds the new testautomation_main.c to the VisualC projects.
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Tue, 12 Feb 2013 12:18:46 -0800] rev 6867
Fix build issue on Win/Haiku.
This fixes a build issue with C variable declarations in my refcounting
change.
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Tue, 12 Feb 2013 11:47:31 -0800] rev 6866
Don't clobber refcounting in SDL_Init.
- Fixes bug 1712 by not overwriting SDL_SubsystemRefCount in SDL_Init.
- Removes the SDL_initialized variable, and makes SDL_SubsystemRefCount
the canonical source of truth for whether or not a subsystem has been
initialized.
- Refactors SDL_InitSubSystem and SDL_QuitSubSystem to use helper
functions to manage refcount.
- Adds automated tests for SDL_Init/Quit*.
- Adds SDL_bits.h which contains SDL_MostSignificantBitIndex.