SHA256
1
0
forked from pool/SDL2

- Update to release 2.0.22

OBS-URL: https://build.opensuse.org/package/show/games/SDL2?expand=0&rev=120
This commit is contained in:
2022-04-25 21:59:40 +00:00
committed by Git OBS Bridge
parent aa1945cf47
commit 9b2aa434fe
7 changed files with 69 additions and 148 deletions

View File

@@ -1,3 +1,40 @@
-------------------------------------------------------------------
Mon Apr 25 21:54:48 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
- Update to release 2.0.22
* Added SDL_RenderGetWindow() to get the window associated with a renderer
* Added floating point rectangle functions: SDL_PointInFRect(),
SDL_FRectEmpty(), SDL_FRectEquals(), SDL_FRectEqualsEpsilon(),
SDL_HasIntersectionF(), SDL_IntersectFRect(), SDL_UnionFRect(),
SDL_EncloseFPoints(), SDL_IntersectFRectAndLine().
* Added SDL_IsTextInputShown() which returns whether the IME
window is currently shown.
* Added SDL_ClearComposition() to dismiss the composition
window without disabling IME input.
* Added SDL_TEXTEDITING_EXT event for handling long composition
text, and a hint SDL_HINT_IME_SUPPORT_EXTENDED_TEXT to enable
it.
* Added the hint SDL_HINT_MOUSE_RELATIVE_MODE_CENTER to control
whether the mouse should be constrained to the whole window
or the center of the window when relative mode is enabled.
* The mouse is now automatically captured when mouse buttons
are pressed, and the hint SDL_HINT_MOUSE_AUTO_CAPTURE allows
you to control this behavior.
* Added the hint SDL_HINT_VIDEO_FOREIGN_WINDOW_OPENGL to let
SDL know that a foreign window will be used with OpenGL.
* Added the hint SDL_HINT_VIDEO_FOREIGN_WINDOW_VULKAN to let
SDL know that a foreign window will be used with Vulkan.
* Added the hint SDL_HINT_QUIT_ON_LAST_WINDOW_CLOSE to specify
whether an SDL_QUIT event will be delivered when the last
application window is closed.
* Added the hint SDL_HINT_JOYSTICK_ROG_CHAKRAM to control
whether ROG Chakram mice show up as joysticks.
* Added the hint SDL_HINT_X11_WINDOW_TYPE to specify the
_NET_WM_WINDOW_TYPE of SDL windows.
* Added the hint SDL_HINT_VIDEO_WAYLAND_PREFER_LIBDECOR to
allow using libdecor with compositors that support
xdg-decoration.
-------------------------------------------------------------------
Sun Jan 16 12:27:09 UTC 2022 - Carsten Ziepke <kieltux@gmail.com>