WhatsNew.txt 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. This is a list of major changes in SDL's version history.
  2. ---------------------------------------------------------------------------
  3. 2.0.16:
  4. ---------------------------------------------------------------------------
  5. General:
  6. * Added SDL_FlashWindow() to get a user's attention
  7. * Added SDL_GetAudioDeviceSpec() to get the preferred audio format of a device
  8. * Added SDL_SetWindowAlwaysOnTop() to dynamically change the SDL_WINDOW_ALWAYS_ON_TOP flag for a window
  9. * Added SDL_SetWindowKeyboardGrab() to support grabbing the keyboard independently of the mouse
  10. * Added SDL_SoftStretchLinear() to do bilinear scaling between 32-bit software surfaces
  11. * Added SDL_UpdateNVTexture() to update streaming NV12/21 textures
  12. * Added SDL_GameControllerSendEffect() and SDL_JoystickSendEffect() to allow sending custom trigger effects to the DualSense controller
  13. * Added SDL_GameControllerGetSensorDataRate() to get the sensor data rate for PlayStation and Nintendo Switch controllers
  14. * Added support for the Amazon Luna game controller
  15. * Added rumble support for the Google Stadia controller using the HIDAPI driver
  16. * Added SDL_GameControllerType constants for the Amazon Luna and Google Stadia controllers
  17. * Added analog rumble for Nintendo Switch Pro controllers using the HIDAPI driver
  18. * Reduced CPU usage when using SDL_WaitEvent() and SDL_WaitEventTimeout()
  19. Windows:
  20. * Added SDL_SetWindowsMessageHook() to set a function that is called for all Windows messages
  21. * Added SDL_RenderGetD3D11Device() to get the D3D11 device used by the SDL renderer
  22. Linux:
  23. * Greatly improved Wayland support
  24. * Added support for audio output and capture using Pipewire
  25. * Added the hint SDL_HINT_AUDIO_INCLUDE_MONITORS to control whether PulseAudio recording should include monitor devices
  26. * Added the hint SDL_HINT_AUDIO_DEVICE_STREAM_ROLE to describe the role of your application for audio control panels
  27. Android:
  28. * Added support for audio output and capture using AAudio
  29. * Added SDL_AndroidShowToast() to show a lightweight notification
  30. iOS:
  31. * Added support for mouse relative mode on iOS 14.1 and newer
  32. * Added support for the Xbox Series X controller
  33. tvOS:
  34. * Added support for the Xbox Series X controller
  35. ---------------------------------------------------------------------------
  36. 2.0.14:
  37. ---------------------------------------------------------------------------
  38. General:
  39. * Added support for PS5 DualSense and Xbox Series X controllers to the HIDAPI controller driver
  40. * Added game controller button constants for paddles and new buttons
  41. * Added game controller functions to get additional information:
  42. * SDL_GameControllerGetSerial()
  43. * SDL_GameControllerHasAxis()
  44. * SDL_GameControllerHasButton()
  45. * SDL_GameControllerGetNumTouchpads()
  46. * SDL_GameControllerGetNumTouchpadFingers()
  47. * SDL_GameControllerGetTouchpadFinger()
  48. * SDL_GameControllerHasSensor()
  49. * SDL_GameControllerSetSensorEnabled()
  50. * SDL_GameControllerIsSensorEnabled()
  51. * SDL_GameControllerGetSensorData()
  52. * SDL_GameControllerRumbleTriggers()
  53. * SDL_GameControllerHasLED()
  54. * SDL_GameControllerSetLED()
  55. * Added the hint SDL_HINT_JOYSTICK_HIDAPI_PS5 to control whether the HIDAPI driver for PS5 controllers should be used.
  56. * Added joystick functions to get additional information:
  57. * SDL_JoystickGetSerial()
  58. * SDL_JoystickRumbleTriggers()
  59. * SDL_JoystickHasLED()
  60. * SDL_JoystickSetLED()
  61. * Added an API to allow the application to create virtual joysticks:
  62. * SDL_JoystickAttachVirtual()
  63. * SDL_JoystickDetachVirtual()
  64. * SDL_JoystickIsVirtual()
  65. * SDL_JoystickSetVirtualAxis()
  66. * SDL_JoystickSetVirtualButton()
  67. * SDL_JoystickSetVirtualHat()
  68. * Added SDL_LockSensors() and SDL_UnlockSensors() to guarantee exclusive access to the sensor list
  69. * Added SDL_HAPTIC_STEERING_AXIS to play an effect on the steering wheel
  70. * Added the hint SDL_HINT_MOUSE_RELATIVE_SCALING to control whether relative motion is scaled by the screen DPI or renderer logical size
  71. * The default value for SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS is now false for better compatibility with modern window managers
  72. * Added SDL_GetPreferredLocales() to get the application's current locale setting
  73. * Added the hint SDL_HINT_PREFERRED_LOCALES to override your application's default locale setting
  74. * Added SDL_OpenURL() to open a URL in the system's default browser
  75. * Added SDL_HasSurfaceRLE() to tell whether a surface is currently using RLE encoding
  76. * Added SDL_SIMDRealloc() to reallocate memory obtained from SDL_SIMDAlloc()
  77. * Added SDL_GetErrorMsg() to get the last error in a thread-safe way
  78. * Added SDL_crc32(), SDL_wcscasecmp(), SDL_wcsncasecmp(), SDL_trunc(), SDL_truncf()
  79. * Added clearer names for RGB pixel formats, e.g. SDL_PIXELFORMAT_XRGB8888, SDL_PIXELFORMAT_XBGR8888, etc.
  80. Windows:
  81. * Added the RAWINPUT controller driver to support more than 4 Xbox controllers simultaneously
  82. * Added the hint SDL_HINT_JOYSTICK_RAWINPUT to control whether the RAWINPUT driver should be used
  83. * Added the hint SDL_HINT_JOYSTICK_HIDAPI_CORRELATE_XINPUT to control whether XInput and WGI should be used to for complete controller functionality with the RAWINPUT driver.
  84. macOS:
  85. * Added the SDL_WINDOW_METAL flag to specify that a window should be created with a Metal view
  86. * Added SDL_Metal_GetLayer() to get the CAMetalLayer backing a Metal view
  87. * Added SDL_Metal_GetDrawableSize() to get the size of a window's drawable, in pixels
  88. Linux:
  89. * Added the hint SDL_HINT_AUDIO_DEVICE_APP_NAME to specify the name that shows up in PulseAudio for your application
  90. * Added the hint SDL_HINT_AUDIO_DEVICE_STREAM_NAME to specify the name that shows up in PulseAudio associated with your audio stream
  91. * Added the hint SDL_HINT_LINUX_JOYSTICK_DEADZONES to control whether HID defined dead zones should be respected on Linux
  92. * Added the hint SDL_HINT_THREAD_PRIORITY_POLICY to specify the thread scheduler policy
  93. * Added the hint SDL_HINT_THREAD_FORCE_REALTIME_TIME_CRITICAL to allow time critical threads to use a realtime scheduling policy
  94. Android:
  95. * Added SDL_AndroidRequestPermission() to request a specific system permission
  96. * Added the hint SDL_HINT_ANDROID_BLOCK_ON_PAUSE_PAUSEAUDIO to control whether audio will pause when the application goes intot he background
  97. OS/2:
  98. * Added support for OS/2, see docs/README-os2.md for details
  99. Emscripten (running in a web browser):
  100. * Added the hint SDL_HINT_EMSCRIPTEN_ASYNCIFY to control whether SDL should call emscripten_sleep internally
  101. ---------------------------------------------------------------------------
  102. 2.0.12:
  103. ---------------------------------------------------------------------------
  104. General:
  105. * Added SDL_GetTextureScaleMode() and SDL_SetTextureScaleMode() to get and set the scaling mode used for a texture
  106. * Added SDL_LockTextureToSurface(), similar to SDL_LockTexture() but the locked area is exposed as a SDL surface.
  107. * Added new blend mode, SDL_BLENDMODE_MUL, which does a modulate and blend operation
  108. * Added the hint SDL_HINT_DISPLAY_USABLE_BOUNDS to override the results of SDL_GetDisplayUsableBounds() for display index 0.
  109. * Added the window underneath the finger to the SDL_TouchFingerEvent
  110. * Added SDL_GameControllerTypeForIndex(), SDL_GameControllerGetType() to return the type of a game controller (Xbox 360, Xbox One, PS3, PS4, or Nintendo Switch Pro)
  111. * Added the hint SDL_HINT_GAMECONTROLLERTYPE to override the automatic game controller type detection
  112. * Added SDL_JoystickFromPlayerIndex() and SDL_GameControllerFromPlayerIndex() to get the device associated with a player index
  113. * Added SDL_JoystickSetPlayerIndex() and SDL_GameControllerSetPlayerIndex() to set the player index associated with a device
  114. * Added the hint SDL_HINT_GAMECONTROLLER_USE_BUTTON_LABELS to specify whether Nintendo Switch Pro controllers should use the buttons as labeled or swapped to match positional layout. The default is to use the buttons as labeled.
  115. * Added support for Nintendo GameCube controllers to the HIDAPI driver, and a hint SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE to control whether this is used.
  116. * Improved support for Xbox 360 and Xbox One controllers when using the HIDAPI driver
  117. * Added support for many game controllers, including:
  118. * 8BitDo FC30 Pro
  119. * 8BitDo M30 GamePad
  120. * BDA PS4 Fightpad
  121. * HORI Fighting Commander
  122. * Hyperkin Duke
  123. * Hyperkin X91
  124. * MOGA XP5-A Plus
  125. * NACON GC-400ES
  126. * NVIDIA Controller v01.04
  127. * PDP Versus Fighting Pad
  128. * Razer Raion Fightpad for PS4
  129. * Razer Serval
  130. * Stadia Controller
  131. * SteelSeries Stratus Duo
  132. * Victrix Pro Fight Stick for PS4
  133. * Xbox One Elite Series 2
  134. * Fixed blocking game controller rumble calls when using the HIDAPI driver
  135. * Added SDL_zeroa() macro to zero an array of elements
  136. * Added SDL_HasARMSIMD() which returns true if the CPU has ARM SIMD (ARMv6+) features
  137. Windows:
  138. * Fixed crash when using the release SDL DLL with applications built with gcc
  139. * Fixed performance regression in event handling introduced in 2.0.10
  140. * Added support for SDL_SetThreadPriority() for UWP applications
  141. Linux:
  142. * Added the hint SDL_HINT_VIDEO_X11_WINDOW_VISUALID to specify the visual chosen for new X11 windows
  143. * Added the hint SDL_HINT_VIDEO_X11_FORCE_EGL to specify whether X11 should use GLX or EGL by default
  144. iOS / tvOS / macOS:
  145. * Added SDL_Metal_CreateView() and SDL_Metal_DestroyView() to create CAMetalLayer-backed NSView/UIView and attach it to the specified window.
  146. iOS/ tvOS:
  147. * Added support for Bluetooth Steam Controllers as game controllers
  148. tvOS:
  149. * Fixed support for surround sound on Apple TV
  150. Android:
  151. * Added SDL_GetAndroidSDKVersion() to return the API level of the current device
  152. * Added support for audio capture using OpenSL-ES
  153. * Added support for Bluetooth Steam Controllers as game controllers
  154. * Fixed rare crashes when the app goes into the background or terminates
  155. ---------------------------------------------------------------------------
  156. 2.0.10:
  157. ---------------------------------------------------------------------------
  158. General:
  159. * The SDL_RW* macros have been turned into functions that are available only in 2.0.10 and onward
  160. * Added SDL_SIMDGetAlignment(), SDL_SIMDAlloc(), and SDL_SIMDFree(), to allocate memory aligned for SIMD operations for the current CPU
  161. * Added SDL_RenderDrawPointF(), SDL_RenderDrawPointsF(), SDL_RenderDrawLineF(), SDL_RenderDrawLinesF(), SDL_RenderDrawRectF(), SDL_RenderDrawRectsF(), SDL_RenderFillRectF(), SDL_RenderFillRectsF(), SDL_RenderCopyF(), SDL_RenderCopyExF(), to allow floating point precision in the SDL rendering API.
  162. * Added SDL_GetTouchDeviceType() to get the type of a touch device, which can be a touch screen or a trackpad in relative or absolute coordinate mode.
  163. * The SDL rendering API now uses batched rendering by default, for improved performance
  164. * Added SDL_RenderFlush() to force batched render commands to execute, if you're going to mix SDL rendering with native rendering
  165. * Added the hint SDL_HINT_RENDER_BATCHING to control whether batching should be used for the rendering API. This defaults to "1" if you don't specify what rendering driver to use when creating the renderer.
  166. * Added the hint SDL_HINT_EVENT_LOGGING to enable logging of SDL events for debugging purposes
  167. * Added the hint SDL_HINT_GAMECONTROLLERCONFIG_FILE to specify a file that will be loaded at joystick initialization with game controller bindings
  168. * Added the hint SDL_HINT_MOUSE_TOUCH_EVENTS to control whether SDL will synthesize touch events from mouse events
  169. * Improved handling of malformed WAVE and BMP files, fixing potential security exploits
  170. Linux:
  171. * Removed the Mir video driver in favor of Wayland
  172. iOS / tvOS:
  173. * Added support for Xbox and PS4 wireless controllers in iOS 13 and tvOS 13
  174. * Added support for text input using Bluetooth keyboards
  175. Android:
  176. * Added low latency audio using OpenSL ES
  177. * Removed SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH (replaced by SDL_HINT_MOUSE_TOUCH_EVENTS and SDL_HINT_TOUCH_MOUSE_EVENTS)
  178. SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH=1, should be replaced by setting both previous hints to 0.
  179. SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH=0, should be replaced by setting both previous hints to 1.
  180. * Added the hint SDL_HINT_ANDROID_BLOCK_ON_PAUSE to set whether the event loop will block itself when the app is paused.
  181. ---------------------------------------------------------------------------
  182. 2.0.9:
  183. ---------------------------------------------------------------------------
  184. General:
  185. * Added a new sensor API, initialized by passing SDL_INIT_SENSOR to SDL_Init(), and defined in SDL_sensor.h
  186. * Added an event SDL_SENSORUPDATE which is sent when a sensor is updated
  187. * Added SDL_GetDisplayOrientation() to return the current display orientation
  188. * Added an event SDL_DISPLAYEVENT which is sent when the display orientation changes
  189. * Added HIDAPI joystick drivers for more consistent support for Xbox, PS4 and Nintendo Switch Pro controller support across platforms. (Thanks to Valve for contributing the PS4 and Nintendo Switch Pro controller support)
  190. * Added support for many other popular game controllers
  191. * Added SDL_JoystickGetDevicePlayerIndex(), SDL_JoystickGetPlayerIndex(), and SDL_GameControllerGetPlayerIndex() to get the player index for a controller. For XInput controllers this returns the XInput index for the controller.
  192. * Added SDL_GameControllerRumble() and SDL_JoystickRumble() which allow simple rumble without using the haptics API
  193. * Added SDL_GameControllerMappingForDeviceIndex() to get the mapping for a controller before it's opened
  194. * Added the hint SDL_HINT_MOUSE_DOUBLE_CLICK_TIME to control the mouse double-click time
  195. * Added the hint SDL_HINT_MOUSE_DOUBLE_CLICK_RADIUS to control the mouse double-click radius, in pixels
  196. * Added SDL_HasColorKey() to return whether a surface has a colorkey active
  197. * Added SDL_HasAVX512F() to return whether the CPU has AVX-512F features
  198. * Added SDL_IsTablet() to return whether the application is running on a tablet
  199. * Added SDL_THREAD_PRIORITY_TIME_CRITICAL for threads that must run at the highest priority
  200. Mac OS X:
  201. * Fixed black screen at start on Mac OS X Mojave
  202. Linux:
  203. * Added SDL_LinuxSetThreadPriority() to allow adjusting the thread priority of native threads using RealtimeKit if available.
  204. iOS:
  205. * Fixed Asian IME input
  206. Android:
  207. * Updated required Android SDK to API 26, to match Google's new App Store requirements
  208. * Added support for wired USB Xbox, PS4, and Nintendo Switch Pro controllers
  209. * Added support for relative mouse mode on Android 7.0 and newer (except where it's broken, on Chromebooks and when in DeX mode with Samsung Experience 9.0)
  210. * Added support for custom mouse cursors on Android 7.0 and newer
  211. * Added the hint SDL_HINT_ANDROID_TRAP_BACK_BUTTON to control whether the back button will back out of the app (the default) or be passed to the application as SDL_SCANCODE_AC_BACK
  212. * Added SDL_AndroidBackButton() to trigger the Android system back button behavior when handling the back button in the application
  213. * Added SDL_IsChromebook() to return whether the app is running in the Chromebook Android runtime
  214. * Added SDL_IsDeXMode() to return whether the app is running while docked in the Samsung DeX
  215. ---------------------------------------------------------------------------
  216. 2.0.8:
  217. ---------------------------------------------------------------------------
  218. General:
  219. * Added SDL_fmod() and SDL_log10()
  220. * Each of the SDL math functions now has the corresponding float version
  221. * 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
  222. Windows:
  223. * Implemented WASAPI support on Windows UWP and removed the deprecated XAudio2 implementation
  224. * Added resampling support on WASAPI on Windows 7 and above
  225. Windows UWP:
  226. * Added SDL_WinRTGetDeviceFamily() to find out what type of device your application is running on
  227. Mac OS X:
  228. * Added support for the Vulkan SDK for Mac:
  229. https://www.lunarg.com/lunarg-releases-vulkan-sdk-1-0-69-0-for-mac/
  230. * Added support for OpenGL ES using ANGLE when it's available
  231. Mac OS X / iOS / tvOS:
  232. * Added a Metal 2D render implementation
  233. * Added SDL_RenderGetMetalLayer() and SDL_RenderGetMetalCommandEncoder() to insert your own drawing into SDL rendering when using the Metal implementation
  234. iOS:
  235. * 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.
  236. iOS / Android:
  237. * 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)
  238. Android:
  239. * SDL now supports building with Android Studio and Gradle by default, and the old Ant project is available in android-project-ant
  240. * SDL now requires the API 19 SDK to build, but can still target devices down to API 14 (Android 4.0.1)
  241. * Added SDL_IsAndroidTV() to tell whether the application is running on Android TV
  242. Android / tvOS:
  243. * 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.
  244. Linux:
  245. * 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"
  246. * 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)
  247. ---------------------------------------------------------------------------
  248. 2.0.7:
  249. ---------------------------------------------------------------------------
  250. General:
  251. * Added audio stream conversion functions:
  252. SDL_NewAudioStream
  253. SDL_AudioStreamPut
  254. SDL_AudioStreamGet
  255. SDL_AudioStreamAvailable
  256. SDL_AudioStreamFlush
  257. SDL_AudioStreamClear
  258. SDL_FreeAudioStream
  259. * Added functions to query and set the SDL memory allocation functions:
  260. SDL_GetMemoryFunctions()
  261. SDL_SetMemoryFunctions()
  262. SDL_GetNumAllocations()
  263. * Added locking functions for multi-threaded access to the joystick and game controller APIs:
  264. SDL_LockJoysticks()
  265. SDL_UnlockJoysticks()
  266. * The following functions are now thread-safe:
  267. SDL_SetEventFilter()
  268. SDL_GetEventFilter()
  269. SDL_AddEventWatch()
  270. SDL_DelEventWatch()
  271. General:
  272. ---------------------------------------------------------------------------
  273. 2.0.6:
  274. ---------------------------------------------------------------------------
  275. General:
  276. * Added cross-platform Vulkan graphics support in SDL_vulkan.h
  277. SDL_Vulkan_LoadLibrary()
  278. SDL_Vulkan_GetVkGetInstanceProcAddr()
  279. SDL_Vulkan_GetInstanceExtensions()
  280. SDL_Vulkan_CreateSurface()
  281. SDL_Vulkan_GetDrawableSize()
  282. SDL_Vulkan_UnloadLibrary()
  283. 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
  284. * Added SDL_ComposeCustomBlendMode() to create custom blend modes for 2D rendering
  285. * Added SDL_HasNEON() which returns whether the CPU has NEON instruction support
  286. * Added support for many game controllers, including the Nintendo Switch Pro Controller
  287. * Added support for inverted axes and separate axis directions in game controller mappings
  288. * Added functions to return information about a joystick before it's opened:
  289. SDL_JoystickGetDeviceVendor()
  290. SDL_JoystickGetDeviceProduct()
  291. SDL_JoystickGetDeviceProductVersion()
  292. SDL_JoystickGetDeviceType()
  293. SDL_JoystickGetDeviceInstanceID()
  294. * Added functions to return information about an open joystick:
  295. SDL_JoystickGetVendor()
  296. SDL_JoystickGetProduct()
  297. SDL_JoystickGetProductVersion()
  298. SDL_JoystickGetType()
  299. SDL_JoystickGetAxisInitialState()
  300. * Added functions to return information about an open game controller:
  301. SDL_GameControllerGetVendor()
  302. SDL_GameControllerGetProduct()
  303. SDL_GameControllerGetProductVersion()
  304. * Added SDL_GameControllerNumMappings() and SDL_GameControllerMappingForIndex() to be able to enumerate the built-in game controller mappings
  305. * Added SDL_LoadFile() and SDL_LoadFile_RW() to load a file into memory
  306. * Added SDL_DuplicateSurface() to make a copy of a surface
  307. * Added an experimental JACK audio driver
  308. * Implemented non-power-of-two audio resampling, optionally using libsamplerate to perform the resampling
  309. * Added the hint SDL_HINT_AUDIO_RESAMPLING_MODE to control the quality of resampling
  310. * Added the hint SDL_HINT_RENDER_LOGICAL_SIZE_MODE to control the scaling policy for SDL_RenderSetLogicalSize():
  311. "0" or "letterbox" - Uses letterbox/sidebars to fit the entire rendering on screen (the default)
  312. "1" or "overscan" - Will zoom the rendering so it fills the entire screen, allowing edges to be drawn offscreen
  313. * 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
  314. * Added the hint SDL_HINT_TOUCH_MOUSE_EVENTS to control whether SDL will synthesize mouse events from touch events
  315. Windows:
  316. * The new default audio driver on Windows is WASAPI and supports hot-plugging devices and changing the default audio device
  317. * The old XAudio2 audio driver is deprecated and will be removed in the next release
  318. * Added hints SDL_HINT_WINDOWS_INTRESOURCE_ICON and SDL_HINT_WINDOWS_INTRESOURCE_ICON_SMALL to specify a custom icon resource ID for SDL windows
  319. * The hint SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING is now on by default for compatibility with .NET languages and various Windows debuggers
  320. * Updated the GUID format for game controller mappings, older mappings will be automatically converted on load
  321. * Implemented the SDL_WINDOW_ALWAYS_ON_TOP flag on Windows
  322. Linux:
  323. * Added an experimental KMS/DRM video driver for embedded development
  324. iOS:
  325. * Added a hint SDL_HINT_AUDIO_CATEGORY to control the audio category, determining whether the phone mute switch affects the audio
  326. ---------------------------------------------------------------------------
  327. 2.0.5:
  328. ---------------------------------------------------------------------------
  329. General:
  330. * Implemented audio capture support for some platforms
  331. * Added SDL_DequeueAudio() to retrieve audio when buffer queuing is turned on for audio capture
  332. * Added events for dragging and dropping text
  333. * Added events for dragging and dropping multiple items
  334. * 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.
  335. * 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.
  336. * Added SDL_GetHintBoolean() to get the boolean value of a hint
  337. * Added SDL_RenderSetIntegerScale() to set whether to smoothly scale or use integral multiples of the viewport size when scaling the rendering output
  338. * Added SDL_CreateRGBSurfaceWithFormat() and SDL_CreateRGBSurfaceWithFormatFrom() to create an SDL surface with a specific pixel format
  339. * 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.
  340. * Added SDL_GetWindowBordersSize() which returns the size of the window's borders around the client area
  341. * 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)
  342. * Added SDL_SetWindowResizable() to change whether a window is resizable
  343. * Added SDL_SetWindowOpacity() and SDL_GetWindowOpacity() to affect the window transparency
  344. * Added SDL_SetWindowModalFor() to set a window as modal for another window
  345. * Added support for AUDIO_U16LSB and AUDIO_U16MSB to SDL_MixAudioFormat()
  346. * Fixed flipped images when reading back from target textures when using the OpenGL renderer
  347. * Fixed texture color modulation with SDL_BLENDMODE_NONE when using the OpenGL renderer
  348. * Fixed bug where the alpha value of colorkeys was ignored when blitting in some cases
  349. Windows:
  350. * 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.
  351. * The hint SDL_HINT_THREAD_STACK_SIZE is now supported on Windows
  352. * Fixed XBox controller triggers automatically being pulled at startup
  353. * The first icon from the executable is used as the default window icon at runtime
  354. * Fixed SDL log messages being printed twice if SDL was built with C library support
  355. * Reset dead keys when the SDL window loses focus, so dead keys pressed in SDL applications don't affect text input into other applications.
  356. Mac OS X:
  357. * Fixed selecting the dummy video driver
  358. * 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.
  359. * Fixed mouse wheel events on Mac OS X 10.12
  360. * The audio driver has been updated to use AVFoundation for better compatibility with newer versions of Mac OS X
  361. Linux:
  362. * Added support for the Fcitx IME
  363. * Added a window event SDL_WINDOWEVENT_TAKE_FOCUS when a window manager asks the SDL window whether it wants to take focus.
  364. * Refresh rates are now rounded instead of truncated, e.g. 59.94 Hz is rounded up to 60 Hz instead of 59.
  365. * Added initial support for touchscreens on Raspberry Pi
  366. OpenBSD:
  367. * SDL_GetBasePath() is now implemented on OpenBSD
  368. iOS:
  369. * Added support for dynamically loaded objects on iOS 8 and newer
  370. tvOS:
  371. * Added support for Apple TV
  372. * 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.
  373. Android:
  374. * Fixed SDL not resizing window when Android screen resolution changes
  375. * Corrected the joystick Z axis reporting for the accelerometer
  376. Emscripten (running in a web browser):
  377. * Many bug fixes and improvements
  378. ---------------------------------------------------------------------------
  379. 2.0.4:
  380. ---------------------------------------------------------------------------
  381. General:
  382. * Added support for web applications using Emscripten, see docs/README-emscripten.md for more information
  383. * Added support for web applications using Native Client (NaCl), see docs/README-nacl.md for more information
  384. * Added an API to queue audio instead of using the audio callback:
  385. SDL_QueueAudio(), SDL_GetQueuedAudioSize(), SDL_ClearQueuedAudio()
  386. * Added events for audio device hot plug support:
  387. SDL_AUDIODEVICEADDED, SDL_AUDIODEVICEREMOVED
  388. * Added SDL_PointInRect()
  389. * Added SDL_HasAVX2() to detect CPUs with AVX2 support
  390. * Added SDL_SetWindowHitTest() to let apps treat parts of their SDL window like traditional window decorations (drag areas, resize areas)
  391. * Added SDL_GetGrabbedWindow() to get the window that currently has input grab, if any
  392. * Added SDL_RenderIsClipEnabled() to tell whether clipping is currently enabled in a renderer
  393. * Added SDL_CaptureMouse() to capture the mouse to get events while the mouse is not in your window
  394. * Added SDL_WarpMouseGlobal() to warp the mouse cursor in global screen space
  395. * Added SDL_GetGlobalMouseState() to get the current mouse state outside of an SDL window
  396. * Added a direction field to mouse wheel events to tell whether they are flipped (natural) or not
  397. * Added GL_CONTEXT_RELEASE_BEHAVIOR GL attribute (maps to [WGL|GLX]_ARB_context_flush_control extension)
  398. * Added EGL_KHR_create_context support to allow OpenGL ES version selection on some platforms
  399. * Added NV12 and NV21 YUV texture support for OpenGL and OpenGL ES 2.0 renderers
  400. * Added a Vivante video driver that is used on various SoC platforms
  401. * 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
  402. * Added a hint SDL_HINT_NO_SIGNAL_HANDLERS to disable SDL's built in signal handling
  403. * Added a hint SDL_HINT_THREAD_STACK_SIZE to set the stack size of SDL's threads
  404. * Added SDL_sqrtf(), SDL_tan(), and SDL_tanf() to the stdlib routines
  405. * Improved support for WAV and BMP files with unusual chunks in them
  406. * Renamed SDL_assert_data to SDL_AssertData and SDL_assert_state to SDL_AssertState
  407. * Added a hint SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN to prevent window interaction while cursor is hidden
  408. * Added SDL_GetDisplayDPI() to get the DPI information for a display
  409. * Added SDL_JoystickCurrentPowerLevel() to get the battery level of a joystick
  410. * Added SDL_JoystickFromInstanceID(), as a helper function, to get the SDL_Joystick* that an event is referring to.
  411. * Added SDL_GameControllerFromInstanceID(), as a helper function, to get the SDL_GameController* that an event is referring to.
  412. Windows:
  413. * Added support for Windows Phone 8.1 and Windows 10/UWP (Universal Windows Platform)
  414. * Timer resolution is now 1 ms by default, adjustable with the SDL_HINT_TIMER_RESOLUTION hint
  415. * SDLmain no longer depends on the C runtime, so you can use the same .lib in both Debug and Release builds
  416. * Added SDL_SetWindowsMessageHook() to set a function to be called for every windows message before TranslateMessage()
  417. * Added a hint SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP to control whether SDL_PumpEvents() processes the Windows message loop
  418. * You can distinguish between real mouse and touch events by looking for SDL_TOUCH_MOUSEID in the mouse event "which" field
  419. * SDL_SysWMinfo now contains the window HDC
  420. * Added support for Unicode command line options
  421. * Prevent beeping when Alt-key combos are pressed
  422. * SDL_SetTextInputRect() re-positions the OS-rendered IME
  423. * Added a hint SDL_HINT_WINDOWS_NO_CLOSE_ON_ALT_F4 to prevent generating SDL_WINDOWEVENT_CLOSE events when Alt-F4 is pressed
  424. * Added a hint SDL_HINT_XINPUT_USE_OLD_JOYSTICK_MAPPING to use the old axis and button mapping for XInput devices (deprecated)
  425. Mac OS X:
  426. * Implemented drag-and-drop support
  427. * Improved joystick hot-plug detection
  428. * The SDL_WINDOWEVENT_EXPOSED window event is triggered in the appropriate situations
  429. * Fixed relative mouse mode when the application loses/regains focus
  430. * Fixed bugs related to transitioning to and from Spaces-aware fullscreen-desktop mode
  431. * Fixed the refresh rate of display modes
  432. * SDL_SysWMInfo is now ARC-compatible
  433. * Added a hint SDL_HINT_MAC_BACKGROUND_APP to prevent forcing the application to become a foreground process
  434. Linux:
  435. * Enabled building with Mir and Wayland support by default.
  436. * Added IBus IME support
  437. * Added a hint SDL_HINT_IME_INTERNAL_EDITING to control whether IBus should handle text editing internally instead of sending SDL_TEXTEDITING events
  438. * Added a hint SDL_HINT_VIDEO_X11_NET_WM_PING to allow disabling _NET_WM_PING protocol handling in SDL_CreateWindow()
  439. * Added support for multiple audio devices when using Pulseaudio
  440. * Fixed duplicate mouse events when using relative mouse motion
  441. iOS:
  442. * Added support for iOS 8
  443. * 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
  444. * SDL_GetWindowSize() and display mode sizes are in the "DPI-independent points" / "screen coordinates" coordinate space rather than pixels (matches OS X behavior)
  445. * Added native resolution support for the iPhone 6 Plus
  446. * Added support for MFi game controllers
  447. * Added support for the hint SDL_HINT_ACCELEROMETER_AS_JOYSTICK
  448. * Added sRGB OpenGL ES context support on iOS 7+
  449. * Added support for SDL_DisableScreenSaver(), SDL_EnableScreenSaver() and the hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER
  450. * SDL_SysWMinfo now contains the OpenGL ES framebuffer and color renderbuffer objects used by the window's active GLES view
  451. * Fixed various rotation and orientation issues
  452. * Fixed memory leaks
  453. Android:
  454. * Added a hint SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH to prevent mouse events from being registered as touch events
  455. * Added hints SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION and SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION
  456. * Added support for SDL_DisableScreenSaver(), SDL_EnableScreenSaver() and the hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER
  457. * Added support for SDL_ShowMessageBox() and SDL_ShowSimpleMessageBox()
  458. Raspberry Pi:
  459. * Added support for the Raspberry Pi 2
  460. ---------------------------------------------------------------------------
  461. 2.0.3:
  462. ---------------------------------------------------------------------------
  463. Mac OS X:
  464. * Fixed creating an OpenGL context by default on Mac OS X 10.6
  465. ---------------------------------------------------------------------------
  466. 2.0.2:
  467. ---------------------------------------------------------------------------
  468. General:
  469. * Added SDL_GL_ResetAttributes() to reset OpenGL attributes to default values
  470. * Added an API to load a database of game controller mappings from a file:
  471. SDL_GameControllerAddMappingsFromFile(), SDL_GameControllerAddMappingsFromRW()
  472. * Added game controller mappings for the PS4 and OUYA controllers
  473. * Added SDL_GetDefaultAssertionHandler() and SDL_GetAssertionHandler()
  474. * Added SDL_DetachThread()
  475. * Added SDL_HasAVX() to determine if the CPU has AVX features
  476. * Added SDL_vsscanf(), SDL_acos(), and SDL_asin() to the stdlib routines
  477. * EGL can now create/manage OpenGL and OpenGL ES 1.x/2.x contexts, and share
  478. them using SDL_GL_SHARE_WITH_CURRENT_CONTEXT
  479. * Added a field "clicks" to the mouse button event which records whether the event is a single click, double click, etc.
  480. * The screensaver is now disabled by default, and there is a hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER that can change that behavior.
  481. * Added a hint SDL_HINT_MOUSE_RELATIVE_MODE_WARP to specify whether mouse relative mode should be emulated using mouse warping.
  482. * testgl2 does not need to link with libGL anymore
  483. * Added testgles2 test program to demonstrate working with OpenGL ES 2.0
  484. * Added controllermap test program to visually map a game controller
  485. Windows:
  486. * Support for OpenGL ES 2.x contexts using either WGL or EGL (natively via
  487. the driver or emulated through ANGLE)
  488. * Added a hint SDL_HINT_VIDEO_WIN_D3DCOMPILER to specify which D3D shader compiler to use for OpenGL ES 2 support through ANGLE
  489. * Added a hint SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT that is useful when creating multiple windows that should share the same OpenGL context.
  490. * Added an event SDL_RENDER_TARGETS_RESET that is sent when D3D9 render targets are reset after the device has been restored.
  491. Mac OS X:
  492. * 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.
  493. Linux:
  494. * Fixed fullscreen and focused behavior when receiving NotifyGrab events
  495. * Added experimental Wayland and Mir support, disabled by default
  496. Android:
  497. * Joystick support (minimum SDK version required to build SDL is now 12,
  498. the required runtime version remains at 10, but on such devices joystick
  499. support won't be available).
  500. * Hotplugging support for joysticks
  501. * 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.
  502. ---------------------------------------------------------------------------
  503. 2.0.1:
  504. ---------------------------------------------------------------------------
  505. General:
  506. * Added an API to get common filesystem paths in SDL_filesystem.h:
  507. SDL_GetBasePath(), SDL_GetPrefPath()
  508. * Added an API to do optimized YV12 and IYUV texture updates:
  509. SDL_UpdateYUVTexture()
  510. * Added an API to get the amount of RAM on the system:
  511. SDL_GetSystemRAM()
  512. * Added a macro to perform timestamp comparisons with SDL_GetTicks():
  513. SDL_TICKS_PASSED()
  514. * Dramatically improved OpenGL ES 2.0 rendering performance
  515. * Added OpenGL attribute SDL_GL_FRAMEBUFFER_SRGB_CAPABLE
  516. Windows:
  517. * Created a static library configuration for the Visual Studio 2010 project
  518. * Added a hint to create the Direct3D device with support for multi-threading:
  519. SDL_HINT_RENDER_DIRECT3D_THREADSAFE
  520. * Added a function to get the D3D9 adapter index for a display:
  521. SDL_Direct3D9GetAdapterIndex()
  522. * Added a function to get the D3D9 device for a D3D9 renderer:
  523. SDL_RenderGetD3D9Device()
  524. * Fixed building SDL with the mingw32 toolchain (mingw-w64 is preferred)
  525. * Fixed crash when using two XInput controllers at the same time
  526. * Fixed detecting a mixture of XInput and DirectInput controllers
  527. * Fixed clearing a D3D render target larger than the window
  528. * Improved support for format specifiers in SDL_snprintf()
  529. Mac OS X:
  530. * Added support for retina displays:
  531. 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.
  532. * Fixed mouse warping in fullscreen mode
  533. * Right mouse click is emulated by holding the Ctrl key while left clicking
  534. Linux:
  535. * Fixed float audio support with the PulseAudio driver
  536. * Fixed missing line endpoints in the OpenGL renderer on some drivers
  537. * X11 symbols are no longer defined to avoid collisions when linking statically
  538. iOS:
  539. * Fixed status bar visibility on iOS 7
  540. * Flipped the accelerometer Y axis to match expected values
  541. Android:
  542. IMPORTANT: You MUST get the updated SDLActivity.java to match C code
  543. * Moved EGL initialization to native code
  544. * Fixed the accelerometer axis rotation relative to the device rotation
  545. * Fixed race conditions when handling the EGL context on pause/resume
  546. * Touch devices are available for enumeration immediately after init
  547. Raspberry Pi:
  548. * Added support for the Raspberry Pi, see README-raspberrypi.txt for details