2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This is a list of major changes in SDL's version history.
|
|
|
|
|
2022-08-27 19:55:55 -06:00
|
|
|
---------------------------------------------------------------------------
|
2022-11-23 14:33:48 -07:00
|
|
|
3.2.0:
|
2022-08-27 19:55:55 -06:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
General:
|
2022-11-26 21:43:38 -07:00
|
|
|
* SDL headers should now be included as `#include <SDL3/SDL.h>`
|
2022-11-25 12:35:24 -07:00
|
|
|
* M_PI is no longer defined in SDL_stdinc.h, now the symbols SDL_PI_D (double) and SDL_PI_F (float) are available
|
2022-11-23 14:33:48 -07:00
|
|
|
* SDL_GetWindowWMInfo() returns a standard int result code instead of SDL_bool, and takes SDL_SYSWM_CURRENT_VERSION as a new third parameter
|
2022-11-25 17:00:06 -07:00
|
|
|
* The preprocessor symbol __MACOSX__ has been renamed __MACOS__
|
|
|
|
* The preprocessor symbol __IPHONEOS__ has been renamed __IOS__
|
2022-11-27 11:07:44 -07:00
|
|
|
* Removed the following functions from the API, see docs/README-migration.md for details:
|
2022-12-01 09:26:32 -07:00
|
|
|
* SDL_CalculateGammaRamp()
|
|
|
|
* SDL_GetRevisionNumber()
|
|
|
|
* SDL_GetWindowBrightness()
|
|
|
|
* SDL_GetWindowGammaRamp()
|
|
|
|
* SDL_RWFromFP()
|
|
|
|
* SDL_SetWindowBrightness()
|
|
|
|
* SDL_SetWindowGammaRamp()
|
|
|
|
* SDL_CreateRGBSurface()
|
|
|
|
* SDL_CreateRGBSurfaceWithFormat()
|
|
|
|
* SDL_CreateRGBSurfaceFrom()
|
|
|
|
* SDL_CreateRGBSurfaceWithFormatFrom()
|
2022-11-27 11:07:44 -07:00
|
|
|
* Removed the following hints from the API, see docs/README-migration.md for details:
|
2022-12-01 09:26:32 -07:00
|
|
|
* SDL_HINT_IDLE_TIMER_DISABLED
|
|
|
|
* SDL_HINT_VIDEO_X11_FORCE_EGL
|
|
|
|
* SDL_HINT_VIDEO_X11_XINERAMA
|
|
|
|
* SDL_HINT_VIDEO_X11_XVIDMODE
|
2022-11-26 02:41:46 -07:00
|
|
|
* SDL_stdinc.h no longer includes stdio.h, stdlib.h, etc., it only provides the SDL C runtime functionality
|
2022-12-01 09:26:32 -07:00
|
|
|
* Added SDL_CreateSurface() and SDL_CreateSurfaceFrom() which replace the SDL_CreateRGBSurface*()
|
2022-11-29 10:40:09 -07:00
|
|
|
* Removed unused 'flags' parameter from SDL_ConvertSurface and SDL_ConvertSurfaceFormat
|