summaryrefslogtreecommitdiff
path: root/test/testdrawchessboard.c
AgeCommit message (Collapse)AuthorFilesLines
2016-03-28Removed not needed SDL_WINDOW_SHOWN from chessboard test program.Philipp Wiesemann1-1/+1
2016-01-02Updated copyright to 2016Sam Lantinga1-1/+1
2015-11-25Replaced tabs with spaces in test programs.Philipp Wiesemann1-72/+72
2015-08-09Added missing SDL_Quit() in test program.Philipp Wiesemann1-0/+1
2015-06-04Fixed not needed calculation in test program.Philipp Wiesemann1-2/+1
2015-05-26Updated the copyright year to 2015Sam Lantinga1-1/+1
2015-05-21Fixed undefined key access in test program.Philipp Wiesemann1-1/+1
2015-05-18Added missing loop cancel for Emscripten in test programs.Philipp Wiesemann1-0/+6
2015-05-18Fixed handling only one event per frame in test program.Philipp Wiesemann1-1/+1
2014-12-18Initial merge of Emscripten port!Ryan C. Gordon1-19/+41
With this commit, you can compile SDL2 with Emscripten ( http://emscripten.org/ ), and make your SDL-based C/C++ program into a web app. This port was due to the efforts of several people, including: Charlie Birks, Sathyanarayanan Gunasekaran, Jukka Jylänki, Alon Zakai, Edward Rudd, Bruce Mitchener, and Martin Gerhardy. (Thanks, everyone!)
2014-08-20Fixed typos in test program.Philipp Wiesemann1-4/+4
2014-08-20Fixed not needed standard includes in test program.Philipp Wiesemann1-3/+0
2014-08-20Fixed warnings about unused value in test program.Philipp Wiesemann1-2/+2
2014-02-02Fixed bug 2374 - Update copyright for 2014...Sam Lantinga1-1/+1
Is it that time already??
2013-12-11Fixed bug 2294 - testdrawchessboard.c Sets the render color alpha to 0x0.Sam Lantinga1-2/+2
Brandon Schaefer This means everything will render black if the software rendering backend selects a pixel format that supports alpha. So it seems best to at lease assume alpha is supported.
2013-11-03Fixed bug 2190 - test/testdrawchessboard.c line endingsSam Lantinga1-109/+109
Joseph Carter test/testdrawchessboard.c checks out of hg with DOS line endings on non-dos systems. Fixed via: perl -pi -e 's/\r//g' test/testdrawchessboard.c
2013-08-14Fix bug 2034: replace printf by SDL_Log in tests; update loopwave VS ↵Andreas Schiffler1-3/+6
solution: copy missing dependency
2013-07-27Changed test program to be more compatible C.Philipp Wiesemann1-3/+6
2013-07-27Removed unused variable from test program.Philipp Wiesemann1-1/+0
2013-07-27Corrected words in comments of test programs.Philipp Wiesemann1-2/+2
2013-07-27Added example of using the software renderer and window surface API, ↵Sam Lantinga1-0/+105
contributed by Nitin Jain.