WhatsNew.txt 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. This is a list of major changes in SDL's version history.
  2. ---------------------------------------------------------------------------
  3. 2.0.8:
  4. ---------------------------------------------------------------------------
  5. General:
  6. * Added SDL_fmod() and SDL_log10()
  7. * Each of the SDL math functions now has the corresponding float version
  8. * Added SDL_SetYUVConversionMode() and SDL_GetYUVConversionMode() to control the formula used when converting to and from YUV colorspace. The options are JPEG, BT.601, and BT.709
  9. Windows:
  10. * Implemented WASAPI support on Windows UWP and removed the deprecated XAudio2 implementation
  11. * Added resampling support on WASAPI on Windows 7 and above
  12. Windows UWP:
  13. * Added SDL_WinRTGetDeviceFamily() to find out what type of device your application is running on
  14. Mac OS X:
  15. * Added support for the Vulkan SDK for Mac:
  16. https://www.lunarg.com/lunarg-releases-vulkan-sdk-1-0-69-0-for-mac/
  17. * Added support for OpenGL ES using ANGLE when it's available
  18. Mac OS X / iOS / tvOS:
  19. * Added a Metal 2D render implementation
  20. * Added SDL_RenderGetMetalLayer() and SDL_RenderGetMetalCommandEncoder() to insert your own drawing into SDL rendering when using the Metal implementation
  21. iOS:
  22. * Added the hint SDL_HINT_IOS_HIDE_HOME_INDICATOR to control whether the home indicator bar on iPhone X should be hidden. This defaults to dimming the indicator for fullscreen applications and showing the indicator for windowed applications.
  23. iOS / Android:
  24. * Added the hint SDL_HINT_RETURN_KEY_HIDES_IME to control whether the return key on the software keyboard should hide the keyboard or send a key event (the default)
  25. Android:
  26. * SDL now supports building with Android Studio and Gradle by default, and the old Ant project is available in android-project-ant
  27. * SDL now requires the API 19 SDK to build, but can still target devices down to API 14 (Android 4.0.1)
  28. * Added SDL_IsAndroidTV() to tell whether the application is running on Android TV
  29. Android / tvOS:
  30. * Added the hint SDL_HINT_TV_REMOTE_AS_JOYSTICK to control whether TV remotes should be listed as joystick devices (the default) or send keyboard events.
  31. Linux:
  32. * Added the hint SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR to control whether the X server should skip the compositor for the SDL application. This defaults to "1"
  33. * Added the hint SDL_HINT_VIDEO_DOUBLE_BUFFER to control whether the Raspberry Pi and KMSDRM video drivers should use double or triple buffering (the default)
  34. ---------------------------------------------------------------------------
  35. 2.0.7:
  36. ---------------------------------------------------------------------------
  37. General:
  38. * Added audio stream conversion functions:
  39. SDL_NewAudioStream
  40. SDL_AudioStreamPut
  41. SDL_AudioStreamGet
  42. SDL_AudioStreamAvailable
  43. SDL_AudioStreamFlush
  44. SDL_AudioStreamClear
  45. SDL_FreeAudioStream
  46. * Added functions to query and set the SDL memory allocation functions:
  47. SDL_GetMemoryFunctions()
  48. SDL_SetMemoryFunctions()
  49. SDL_GetNumAllocations()
  50. * Added locking functions for multi-threaded access to the joystick and game controller APIs:
  51. SDL_LockJoysticks()
  52. SDL_UnlockJoysticks()
  53. * The following functions are now thread-safe:
  54. SDL_SetEventFilter()
  55. SDL_GetEventFilter()
  56. SDL_AddEventWatch()
  57. SDL_DelEventWatch()
  58. General:
  59. ---------------------------------------------------------------------------
  60. 2.0.6:
  61. ---------------------------------------------------------------------------
  62. General:
  63. * Added cross-platform Vulkan graphics support in SDL_vulkan.h
  64. SDL_Vulkan_LoadLibrary()
  65. SDL_Vulkan_GetVkGetInstanceProcAddr()
  66. SDL_Vulkan_GetInstanceExtensions()
  67. SDL_Vulkan_CreateSurface()
  68. SDL_Vulkan_GetDrawableSize()
  69. SDL_Vulkan_UnloadLibrary()
  70. This is all the platform-specific code you need to bring up Vulkan on all SDL platforms. You can look at an example in test/testvulkan.c
  71. * Added SDL_ComposeCustomBlendMode() to create custom blend modes for 2D rendering
  72. * Added SDL_HasNEON() which returns whether the CPU has NEON instruction support
  73. * Added support for many game controllers, including the Nintendo Switch Pro Controller
  74. * Added support for inverted axes and separate axis directions in game controller mappings
  75. * Added functions to return information about a joystick before it's opened:
  76. SDL_JoystickGetDeviceVendor()
  77. SDL_JoystickGetDeviceProduct()
  78. SDL_JoystickGetDeviceProductVersion()
  79. SDL_JoystickGetDeviceType()
  80. SDL_JoystickGetDeviceInstanceID()
  81. * Added functions to return information about an open joystick:
  82. SDL_JoystickGetVendor()
  83. SDL_JoystickGetProduct()
  84. SDL_JoystickGetProductVersion()
  85. SDL_JoystickGetType()
  86. SDL_JoystickGetAxisInitialState()
  87. * Added functions to return information about an open game controller:
  88. SDL_GameControllerGetVendor()
  89. SDL_GameControllerGetProduct()
  90. SDL_GameControllerGetProductVersion()
  91. * Added SDL_GameControllerNumMappings() and SDL_GameControllerMappingForIndex() to be able to enumerate the built-in game controller mappings
  92. * Added SDL_LoadFile() and SDL_LoadFile_RW() to load a file into memory
  93. * Added SDL_DuplicateSurface() to make a copy of a surface
  94. * Added an experimental JACK audio driver
  95. * Implemented non-power-of-two audio resampling, optionally using libsamplerate to perform the resampling
  96. * Added the hint SDL_HINT_AUDIO_RESAMPLING_MODE to control the quality of resampling
  97. * Added the hint SDL_HINT_RENDER_LOGICAL_SIZE_MODE to control the scaling policy for SDL_RenderSetLogicalSize():
  98. "0" or "letterbox" - Uses letterbox/sidebars to fit the entire rendering on screen (the default)
  99. "1" or "overscan" - Will zoom the rendering so it fills the entire screen, allowing edges to be drawn offscreen
  100. * Added the hints SDL_HINT_MOUSE_NORMAL_SPEED_SCALE and SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE to scale the mouse speed when being read from raw mouse input
  101. * Added the hint SDL_HINT_TOUCH_MOUSE_EVENTS to control whether SDL will synthesize mouse events from touch events
  102. Windows:
  103. * The new default audio driver on Windows is WASAPI and supports hot-plugging devices and changing the default audio device
  104. * The old XAudio2 audio driver is deprecated and will be removed in the next release
  105. * Added hints SDL_HINT_WINDOWS_INTRESOURCE_ICON and SDL_HINT_WINDOWS_INTRESOURCE_ICON_SMALL to specify a custom icon resource ID for SDL windows
  106. * The hint SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING is now on by default for compatibility with .NET languages and various Windows debuggers
  107. * Updated the GUID format for game controller mappings, older mappings will be automatically converted on load
  108. * Implemented the SDL_WINDOW_ALWAYS_ON_TOP flag on Windows
  109. Linux:
  110. * Added an experimental KMS/DRM video driver for embedded development
  111. iOS:
  112. * Added a hint SDL_HINT_AUDIO_CATEGORY to control the audio category, determining whether the phone mute switch affects the audio
  113. ---------------------------------------------------------------------------
  114. 2.0.5:
  115. ---------------------------------------------------------------------------
  116. General:
  117. * Implemented audio capture support for some platforms
  118. * Added SDL_DequeueAudio() to retrieve audio when buffer queuing is turned on for audio capture
  119. * Added events for dragging and dropping text
  120. * Added events for dragging and dropping multiple items
  121. * By default the click raising a window will not be delivered to the SDL application. You can set the hint SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH to "1" to allow that click through to the window.
  122. * Saving a surface with an alpha channel as a BMP will use a newer BMP format that supports alpha information. You can set the hint SDL_HINT_BMP_SAVE_LEGACY_FORMAT to "1" to use the old format.
  123. * Added SDL_GetHintBoolean() to get the boolean value of a hint
  124. * Added SDL_RenderSetIntegerScale() to set whether to smoothly scale or use integral multiples of the viewport size when scaling the rendering output
  125. * Added SDL_CreateRGBSurfaceWithFormat() and SDL_CreateRGBSurfaceWithFormatFrom() to create an SDL surface with a specific pixel format
  126. * Added SDL_GetDisplayUsableBounds() which returns the area usable for windows. For example, on Mac OS X, this subtracts the area occupied by the menu bar and dock.
  127. * Added SDL_GetWindowBordersSize() which returns the size of the window's borders around the client area
  128. * Added a window event SDL_WINDOWEVENT_HIT_TEST when a window had a hit test that wasn't SDL_HITTEST_NORMAL (e.g. in the title bar or window frame)
  129. * Added SDL_SetWindowResizable() to change whether a window is resizable
  130. * Added SDL_SetWindowOpacity() and SDL_GetWindowOpacity() to affect the window transparency
  131. * Added SDL_SetWindowModalFor() to set a window as modal for another window
  132. * Added support for AUDIO_U16LSB and AUDIO_U16MSB to SDL_MixAudioFormat()
  133. * Fixed flipped images when reading back from target textures when using the OpenGL renderer
  134. * Fixed texture color modulation with SDL_BLENDMODE_NONE when using the OpenGL renderer
  135. * Fixed bug where the alpha value of colorkeys was ignored when blitting in some cases
  136. Windows:
  137. * Added a hint SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING to prevent SDL from raising a debugger exception to name threads. This exception can cause problems with .NET applications when running under a debugger.
  138. * The hint SDL_HINT_THREAD_STACK_SIZE is now supported on Windows
  139. * Fixed XBox controller triggers automatically being pulled at startup
  140. * The first icon from the executable is used as the default window icon at runtime
  141. * Fixed SDL log messages being printed twice if SDL was built with C library support
  142. * Reset dead keys when the SDL window loses focus, so dead keys pressed in SDL applications don't affect text input into other applications.
  143. Mac OS X:
  144. * Fixed selecting the dummy video driver
  145. * The caps lock key now generates a pressed event when pressed and a released event when released, instead of a press/release event pair when pressed.
  146. * Fixed mouse wheel events on Mac OS X 10.12
  147. * The audio driver has been updated to use AVFoundation for better compatibility with newer versions of Mac OS X
  148. Linux:
  149. * Added support for the Fcitx IME
  150. * Added a window event SDL_WINDOWEVENT_TAKE_FOCUS when a window manager asks the SDL window whether it wants to take focus.
  151. * Refresh rates are now rounded instead of truncated, e.g. 59.94 Hz is rounded up to 60 Hz instead of 59.
  152. * Added initial support for touchscreens on Raspberry Pi
  153. OpenBSD:
  154. * SDL_GetBasePath() is now implemented on OpenBSD
  155. iOS:
  156. * Added support for dynamically loaded objects on iOS 8 and newer
  157. tvOS:
  158. * Added support for Apple TV
  159. * Added a hint SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION to control whether he Apple TV remote's joystick axes will automatically match the rotation of the remote.
  160. Android:
  161. * Fixed SDL not resizing window when Android screen resolution changes
  162. * Corrected the joystick Z axis reporting for the accelerometer
  163. Emscripten (running in a web browser):
  164. * Many bug fixes and improvements
  165. ---------------------------------------------------------------------------
  166. 2.0.4:
  167. ---------------------------------------------------------------------------
  168. General:
  169. * Added support for web applications using Emscripten, see docs/README-emscripten.md for more information
  170. * Added support for web applications using Native Client (NaCl), see docs/README-nacl.md for more information
  171. * Added an API to queue audio instead of using the audio callback:
  172. SDL_QueueAudio(), SDL_GetQueuedAudioSize(), SDL_ClearQueuedAudio()
  173. * Added events for audio device hot plug support:
  174. SDL_AUDIODEVICEADDED, SDL_AUDIODEVICEREMOVED
  175. * Added SDL_PointInRect()
  176. * Added SDL_HasAVX2() to detect CPUs with AVX2 support
  177. * Added SDL_SetWindowHitTest() to let apps treat parts of their SDL window like traditional window decorations (drag areas, resize areas)
  178. * Added SDL_GetGrabbedWindow() to get the window that currently has input grab, if any
  179. * Added SDL_RenderIsClipEnabled() to tell whether clipping is currently enabled in a renderer
  180. * Added SDL_CaptureMouse() to capture the mouse to get events while the mouse is not in your window
  181. * Added SDL_WarpMouseGlobal() to warp the mouse cursor in global screen space
  182. * Added SDL_GetGlobalMouseState() to get the current mouse state outside of an SDL window
  183. * Added a direction field to mouse wheel events to tell whether they are flipped (natural) or not
  184. * Added GL_CONTEXT_RELEASE_BEHAVIOR GL attribute (maps to [WGL|GLX]_ARB_context_flush_control extension)
  185. * Added EGL_KHR_create_context support to allow OpenGL ES version selection on some platforms
  186. * Added NV12 and NV21 YUV texture support for OpenGL and OpenGL ES 2.0 renderers
  187. * Added a Vivante video driver that is used on various SoC platforms
  188. * Added an event SDL_RENDER_DEVICE_RESET that is sent from the D3D renderers when the D3D device is lost, and from Android's event loop when the GLES context had to be recreated
  189. * Added a hint SDL_HINT_NO_SIGNAL_HANDLERS to disable SDL's built in signal handling
  190. * Added a hint SDL_HINT_THREAD_STACK_SIZE to set the stack size of SDL's threads
  191. * Added SDL_sqrtf(), SDL_tan(), and SDL_tanf() to the stdlib routines
  192. * Improved support for WAV and BMP files with unusual chunks in them
  193. * Renamed SDL_assert_data to SDL_AssertData and SDL_assert_state to SDL_AssertState
  194. * Added a hint SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN to prevent window interaction while cursor is hidden
  195. * Added SDL_GetDisplayDPI() to get the DPI information for a display
  196. * Added SDL_JoystickCurrentPowerLevel() to get the battery level of a joystick
  197. * Added SDL_JoystickFromInstanceID(), as a helper function, to get the SDL_Joystick* that an event is referring to.
  198. * Added SDL_GameControllerFromInstanceID(), as a helper function, to get the SDL_GameController* that an event is referring to.
  199. Windows:
  200. * Added support for Windows Phone 8.1 and Windows 10/UWP (Universal Windows Platform)
  201. * Timer resolution is now 1 ms by default, adjustable with the SDL_HINT_TIMER_RESOLUTION hint
  202. * SDLmain no longer depends on the C runtime, so you can use the same .lib in both Debug and Release builds
  203. * Added SDL_SetWindowsMessageHook() to set a function to be called for every windows message before TranslateMessage()
  204. * Added a hint SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP to control whether SDL_PumpEvents() processes the Windows message loop
  205. * You can distinguish between real mouse and touch events by looking for SDL_TOUCH_MOUSEID in the mouse event "which" field
  206. * SDL_SysWMinfo now contains the window HDC
  207. * Added support for Unicode command line options
  208. * Prevent beeping when Alt-key combos are pressed
  209. * SDL_SetTextInputRect() re-positions the OS-rendered IME
  210. * Added a hint SDL_HINT_WINDOWS_NO_CLOSE_ON_ALT_F4 to prevent generating SDL_WINDOWEVENT_CLOSE events when Alt-F4 is pressed
  211. * Added a hint SDL_HINT_XINPUT_USE_OLD_JOYSTICK_MAPPING to use the old axis and button mapping for XInput devices (deprecated)
  212. Mac OS X:
  213. * Implemented drag-and-drop support
  214. * Improved joystick hot-plug detection
  215. * The SDL_WINDOWEVENT_EXPOSED window event is triggered in the appropriate situations
  216. * Fixed relative mouse mode when the application loses/regains focus
  217. * Fixed bugs related to transitioning to and from Spaces-aware fullscreen-desktop mode
  218. * Fixed the refresh rate of display modes
  219. * SDL_SysWMInfo is now ARC-compatible
  220. * Added a hint SDL_HINT_MAC_BACKGROUND_APP to prevent forcing the application to become a foreground process
  221. Linux:
  222. * Enabled building with Mir and Wayland support by default.
  223. * Added IBus IME support
  224. * Added a hint SDL_HINT_IME_INTERNAL_EDITING to control whether IBus should handle text editing internally instead of sending SDL_TEXTEDITING events
  225. * Added a hint SDL_HINT_VIDEO_X11_NET_WM_PING to allow disabling _NET_WM_PING protocol handling in SDL_CreateWindow()
  226. * Added support for multiple audio devices when using Pulseaudio
  227. * Fixed duplicate mouse events when using relative mouse motion
  228. iOS:
  229. * Added support for iOS 8
  230. * The SDL_WINDOW_ALLOW_HIGHDPI window flag now enables high-dpi support, and SDL_GL_GetDrawableSize() or SDL_GetRendererOutputSize() gets the window resolution in pixels
  231. * SDL_GetWindowSize() and display mode sizes are in the "DPI-independent points" / "screen coordinates" coordinate space rather than pixels (matches OS X behavior)
  232. * Added native resolution support for the iPhone 6 Plus
  233. * Added support for MFi game controllers
  234. * Added support for the hint SDL_HINT_ACCELEROMETER_AS_JOYSTICK
  235. * Added sRGB OpenGL ES context support on iOS 7+
  236. * Added support for SDL_DisableScreenSaver(), SDL_EnableScreenSaver() and the hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER
  237. * SDL_SysWMinfo now contains the OpenGL ES framebuffer and color renderbuffer objects used by the window's active GLES view
  238. * Fixed various rotation and orientation issues
  239. * Fixed memory leaks
  240. Android:
  241. * Added a hint SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH to prevent mouse events from being registered as touch events
  242. * Added hints SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION and SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION
  243. * Added support for SDL_DisableScreenSaver(), SDL_EnableScreenSaver() and the hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER
  244. * Added support for SDL_ShowMessageBox() and SDL_ShowSimpleMessageBox()
  245. Raspberry Pi:
  246. * Added support for the Raspberry Pi 2
  247. ---------------------------------------------------------------------------
  248. 2.0.3:
  249. ---------------------------------------------------------------------------
  250. Mac OS X:
  251. * Fixed creating an OpenGL context by default on Mac OS X 10.6
  252. ---------------------------------------------------------------------------
  253. 2.0.2:
  254. ---------------------------------------------------------------------------
  255. General:
  256. * Added SDL_GL_ResetAttributes() to reset OpenGL attributes to default values
  257. * Added an API to load a database of game controller mappings from a file:
  258. SDL_GameControllerAddMappingsFromFile(), SDL_GameControllerAddMappingsFromRW()
  259. * Added game controller mappings for the PS4 and OUYA controllers
  260. * Added SDL_GetDefaultAssertionHandler() and SDL_GetAssertionHandler()
  261. * Added SDL_DetachThread()
  262. * Added SDL_HasAVX() to determine if the CPU has AVX features
  263. * Added SDL_vsscanf(), SDL_acos(), and SDL_asin() to the stdlib routines
  264. * EGL can now create/manage OpenGL and OpenGL ES 1.x/2.x contexts, and share
  265. them using SDL_GL_SHARE_WITH_CURRENT_CONTEXT
  266. * Added a field "clicks" to the mouse button event which records whether the event is a single click, double click, etc.
  267. * The screensaver is now disabled by default, and there is a hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER that can change that behavior.
  268. * Added a hint SDL_HINT_MOUSE_RELATIVE_MODE_WARP to specify whether mouse relative mode should be emulated using mouse warping.
  269. * testgl2 does not need to link with libGL anymore
  270. * Added testgles2 test program to demonstrate working with OpenGL ES 2.0
  271. * Added controllermap test program to visually map a game controller
  272. Windows:
  273. * Support for OpenGL ES 2.x contexts using either WGL or EGL (natively via
  274. the driver or emulated through ANGLE)
  275. * Added a hint SDL_HINT_VIDEO_WIN_D3DCOMPILER to specify which D3D shader compiler to use for OpenGL ES 2 support through ANGLE
  276. * Added a hint SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT that is useful when creating multiple windows that should share the same OpenGL context.
  277. * Added an event SDL_RENDER_TARGETS_RESET that is sent when D3D9 render targets are reset after the device has been restored.
  278. Mac OS X:
  279. * Added a hint SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK to control whether Ctrl+click should be treated as a right click on Mac OS X. This is off by default.
  280. Linux:
  281. * Fixed fullscreen and focused behavior when receiving NotifyGrab events
  282. * Added experimental Wayland and Mir support, disabled by default
  283. Android:
  284. * Joystick support (minimum SDK version required to build SDL is now 12,
  285. the required runtime version remains at 10, but on such devices joystick
  286. support won't be available).
  287. * Hotplugging support for joysticks
  288. * Added a hint SDL_HINT_ACCELEROMETER_AS_JOYSTICK to control whether the accelerometer should be listed as a 3 axis joystick, which it will by default.
  289. ---------------------------------------------------------------------------
  290. 2.0.1:
  291. ---------------------------------------------------------------------------
  292. General:
  293. * Added an API to get common filesystem paths in SDL_filesystem.h:
  294. SDL_GetBasePath(), SDL_GetPrefPath()
  295. * Added an API to do optimized YV12 and IYUV texture updates:
  296. SDL_UpdateYUVTexture()
  297. * Added an API to get the amount of RAM on the system:
  298. SDL_GetSystemRAM()
  299. * Added a macro to perform timestamp comparisons with SDL_GetTicks():
  300. SDL_TICKS_PASSED()
  301. * Dramatically improved OpenGL ES 2.0 rendering performance
  302. * Added OpenGL attribute SDL_GL_FRAMEBUFFER_SRGB_CAPABLE
  303. Windows:
  304. * Created a static library configuration for the Visual Studio 2010 project
  305. * Added a hint to create the Direct3D device with support for multi-threading:
  306. SDL_HINT_RENDER_DIRECT3D_THREADSAFE
  307. * Added a function to get the D3D9 adapter index for a display:
  308. SDL_Direct3D9GetAdapterIndex()
  309. * Added a function to get the D3D9 device for a D3D9 renderer:
  310. SDL_RenderGetD3D9Device()
  311. * Fixed building SDL with the mingw32 toolchain (mingw-w64 is preferred)
  312. * Fixed crash when using two XInput controllers at the same time
  313. * Fixed detecting a mixture of XInput and DirectInput controllers
  314. * Fixed clearing a D3D render target larger than the window
  315. * Improved support for format specifiers in SDL_snprintf()
  316. Mac OS X:
  317. * Added support for retina displays:
  318. Create your window with the SDL_WINDOW_ALLOW_HIGHDPI flag, and then use SDL_GL_GetDrawableSize() to find the actual drawable size. You are responsible for scaling mouse and drawing coordinates appropriately.
  319. * Fixed mouse warping in fullscreen mode
  320. * Right mouse click is emulated by holding the Ctrl key while left clicking
  321. Linux:
  322. * Fixed float audio support with the PulseAudio driver
  323. * Fixed missing line endpoints in the OpenGL renderer on some drivers
  324. * X11 symbols are no longer defined to avoid collisions when linking statically
  325. iOS:
  326. * Fixed status bar visibility on iOS 7
  327. * Flipped the accelerometer Y axis to match expected values
  328. Android:
  329. IMPORTANT: You MUST get the updated SDLActivity.java to match C code
  330. * Moved EGL initialization to native code
  331. * Fixed the accelerometer axis rotation relative to the device rotation
  332. * Fixed race conditions when handling the EGL context on pause/resume
  333. * Touch devices are available for enumeration immediately after init
  334. Raspberry Pi:
  335. * Added support for the Raspberry Pi, see README-raspberrypi.txt for details