|
441359bd
|
2016-05-14T23:29:49
|
|
WinRT: workaround a possible Windows bug, whereby hiding cursors, disables mouse-moved events
This workaround, unfortunately, requires that apps directly link to a set of
Win32-style cursor resource files (that contain a transparent cursor image).
Copies of suitable resource files are in src/core/winrt/, and should be
included directly in an app's MSVC project.
A rough explanation of this workaround/hack, and why it's needed (and
seemingly can't be done through programmatic means), is in this change's code.
|
|
fe4c3b29
|
2016-05-10T21:15:11
|
|
iOS: Added brackets to function names in README so that doxygen links them.
|
|
46851a67
|
2016-04-17T22:56:20
|
|
WinRT: another README tweak
|
|
937ae32c
|
2016-04-17T22:54:45
|
|
WinRT: README tweaks
|
|
ea86c01a
|
2016-04-14T21:10:57
|
|
Fixed markdown formatting in porting README for doxygen output.
The underscores and the newlines for the list were lost before.
|
|
3555e6e5
|
2016-04-01T21:10:43
|
|
Updated info about required Ubuntu version for Mir support in README.
|
|
4011d991
|
2016-02-24T21:05:19
|
|
Fixed doxygen warnings about markdown formatting.
|
|
5ba1fd9b
|
2016-01-01T17:41:11
|
|
Fixed typo in README for iOS.
|
|
4aae0290
|
2015-12-31T21:16:43
|
|
Updated some header comments and iOS documentation to better clarify high-dpi / retina support and screen-coordinate sizes versus pixel sizes.
|
|
25abce51
|
2015-11-29T19:33:11
|
|
WinRT: added Win10/UWP (Universal Windows Platform) support
"UWP" appears to be Microsoft's new name for WinRT/Windows-Store APIs.
This set of changes updates SDL's WinRT backends to support the Win10 flavor
of WinRT. It has been tested on Win10 on a desktop. In theory, it should
also support Win10 on other devices (phone, Xbox One, etc.), however further
patches may be necessary.
This adds:
- a set of MSVC 2015 project files, for use in creating UWP apps
- modifications to various pieces of SDL, in order to compile via MSVC 2015 +
the Win10 API set
- enables SDL_Window resizing and programmatic-fullscreen toggling, when using
the WinRT backend
- WinRT README updates
|
|
d79bfa0d
|
2015-07-31T20:15:39
|
|
Added filesystem to list of paths in porting README.
|
|
6ea942da
|
2015-07-19T19:44:40
|
|
Added MSAA support for OpenGL ES contexts on iOS.
Note that extra steps must be taken when using glReadPixels to read the contents of the main OpenGL ES framebuffer on iOS, if multisampling is used. See the OpenGL ES section of README-ios.md for details.
|
|
9b6f159c
|
2015-06-26T20:11:41
|
|
Emscripten: Corrected build instructions in documentation.
And fixed a typo.
|
|
437a6d9d
|
2015-06-22T21:30:08
|
|
Updated Mac OS X documentation for fatbuilt.sh -> gcc-fat.sh transition.
|
|
0e45984f
|
2015-06-21T17: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().
|