David Ludwig <dludwig@pobox.com> [Tue, 17 Mar 2015 19:45:47 -0400] rev 9386
WinRT: made OpenGL window-init work with latest round of ANGLE/WinRT updates
Various constants in ANGLE/WinRT, both in MSOpenTech's ms-master branch, and
in Google's branch, were changed again. This change makes SDL/WinRT work with
them.
To note, the ms-master branch (of ANGLE) was updated via this merge:
https://github.com/MSOpenTech/angle/commit/bbd2eb0a9c453a941f2c7abacf616d5a66b6be92#diff-d1377fbe747de154e1bfcf7221d3de67
David Ludwig <dludwig@pobox.com> [Tue, 17 Mar 2015 10:25:21 -0400] rev 9385
WinRT: another ANGLE/OpenGL-initialization, error messaging tweak
David Ludwig <dludwig@pobox.com> [Tue, 17 Mar 2015 10:22:36 -0400] rev 9384
WinRT: ANGLE/OpenGLES-initialization, error message improvements
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Sun, 15 Mar 2015 19:25:10 +0100] rev 9383
Updated name of assert type in test program.
Ryan C. Gordon <icculus@icculus.org> [Fri, 13 Mar 2015 12:20:17 -0400] rev 9382
Cleaning out a silly coding style I used to use.
Changed all the "return (x);" lines to "return x;"
Ryan C. Gordon <icculus@icculus.org> [Fri, 13 Mar 2015 00:48:30 -0400] rev 9381
Removed an unnecessary #ifdef.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Wed, 11 Mar 2015 21:14:21 +0100] rev 9380
Updated internal documentation comments.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Fri, 06 Mar 2015 21:34:10 +0100] rev 9379
Windows: Fixed ignoring return value of internal function.
If the function WIN_ConvertUTF32toUTF8() failed (should currently not be
possible) a not terminated string would have been sent as text input event.
This also fixed converting characters more often than needed on key repetition.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Fri, 06 Mar 2015 21:29:25 +0100] rev 9378
Emscripten: Fixed ignoring return value of internal function.
If the function Emscripten_ConvertUTF32toUTF8() failed (should currently not be
possible) a not terminated string would have been sent as text input event.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Fri, 06 Mar 2015 21:26:37 +0100] rev 9377
Emscripten: Partially fixed not removing key event callbacks if hint was used.
The key event callbacks were always removed from the same target although it is
possible to set them to different targets using the hint. This is only a partial
fix because it assumes that the hint is not changed to a different value later.