docs


Log

Author Commit Date CI Message
Philipp Wiesemann 45690115 2016-07-27T20:47:31 Fixed information in touch README and changed identifiers so doxygen links them.
Philipp Wiesemann 696867ee 2016-06-25T19:40:02 Mac: Updated file name in README.
David Ludwig 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.
Philipp Wiesemann fe4c3b29 2016-05-10T21:15:11 iOS: Added brackets to function names in README so that doxygen links them.
David Ludwig 46851a67 2016-04-17T22:56:20 WinRT: another README tweak
David Ludwig 937ae32c 2016-04-17T22:54:45 WinRT: README tweaks
Philipp Wiesemann 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.
Philipp Wiesemann 3555e6e5 2016-04-01T21:10:43 Updated info about required Ubuntu version for Mir support in README.
Philipp Wiesemann 4011d991 2016-02-24T21:05:19 Fixed doxygen warnings about markdown formatting.
Philipp Wiesemann 5ba1fd9b 2016-01-01T17:41:11 Fixed typo in README for iOS.
Alex Szpakowski 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.
David Ludwig 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
Philipp Wiesemann d79bfa0d 2015-07-31T20:15:39 Added filesystem to list of paths in porting README.
Alex Szpakowski 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.
Philipp Wiesemann 9b6f159c 2015-06-26T20:11:41 Emscripten: Corrected build instructions in documentation. And fixed a typo.
Ryan C. Gordon 437a6d9d 2015-06-22T21:30:08 Updated Mac OS X documentation for fatbuilt.sh -> gcc-fat.sh transition.
Philipp Wiesemann 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().