kc3-lang/SDL/test

Branch :


Log

Author Commit Date CI Message
1446faf0 2015-12-25 13:41:23 Fixed a comment in two test programs.
cbe19d53 2015-12-24 06:11:05 Fixed whitespace in testspriteminimal.c
7b680a2a 2015-12-18 18:49:23 Fixed mapping third party XBox controllers that have the trigger axis all the way in until they are pulled and get updated values.
11c13916 2015-12-07 21:43:16 Fixed outdated information in README for test programs. Two programs were removed some time ago and one was renamed.
96229eed 2015-12-06 17:50:51 Changed comment in test program to avoid confusion. There is a library called SDL_sound which is not used here.
4abb7329 2015-12-04 22:12:36 Fixed comment in filesystem test program.
74de09ad 2015-12-01 22:24:04 Fixed compile error in timer test program if PRIu64 not available.
1e2a4439 2015-12-01 22:22:58 Fixed compile warning in IME test program.
b2445f7b 2015-12-01 22:21:29 Fixed filesystem test program to compile with older versions of C.
11d98995 2015-11-25 21:39:28 Replaced tabs with spaces in test programs.
e6ad29ae 2015-11-14 12:35:45 Added SDL_JoystickFromInstanceID() and SDL_GameControllerFromInstanceID().
d80f4566 2015-10-07 21:16:59 Fixed freeing uninitialized pointers on failure cleanup in tests.
2bf6f1bc 2015-09-20 23:08:36 Added initial support for MFi game controllers on iOS.
d338f465 2015-09-18 16:22:23 Added copyright information on test/sample.wav; the mystery is solved! :)
eb57d752 2015-08-09 20:01:01 Added missing SDL_Quit() in test program.
344fbe61 2015-08-07 01:00:14 testdisplayinfo.c forgot to SDL_Quit() at the end.
8bbded25 2015-07-15 21:10:38 Fixed comment in test program.
b7ecc670 2015-07-14 21:28:26 Added test/testdisplayinfo.c
0e45984f 2015-06-21 17: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().