SDL
SDL copied to clipboard
Simple Directmedia Layer
## Description When using `SDL_ConvertEventToRenderCoordinates` with `SDL_EVENT_FINGER_MOTION` events it converts `x` and `y` coordinates but does not convert the the `dx` and the `dy` unlike `xrel` and `yrel` of mouse...
https://github.com/libsdl-org/SDL/pull/11591 for SDL3 companion test program for SDL3 https://github.com/Kethen/sdl_lg4ff_util/tree/SDL3_lg4ff WINE has not moved onto SDL3 so it cannot be tried on WINE at the moment
## Description `SDL_RenderDebugText` is a useful function to quickly put debug text on the screen, but provides no easy way to display other data useful for debugging such as numbers....
## Description Implements functions to create/manage an OpenXR instance/system/session/swapchain, without exposing raw GPU handles to the end user. This branch still needs a *lot* of work, but the foundation is...
Feature Request ============ Create Symbols: KMOD_Conotates_L/RGUI : mapped to KMOD_L/RCTRL when `_APPLE_` is defined and KMOD_L/RGUI otherwise KMOD_Conotates_L/RCMD : mapped to KMOD_L/RGUI when `_APPLE_` is defined and KMOD_L/RCTRL otherwise And...
If renderer is created with `SDL_CreateRenderer(window, NULL)` and SDL decides to use the new GPU API for it, the call to `SDL_GetRendererName` function will return `gpu` as the result for...
I use ImGui with SDL3 and I started to get freezes on MacOS, when SDL_StopTextInput is called. I investigated and found out that in [Cocoa_StartTextInput](https://github.com/libsdl-org/SDL/blob/main/src/video/cocoa/SDL_cocoakeyboard.m#L358) data.fieldEdit is removed from Superview...
I know it has been planned to reimplement SDL_Renderer on top of new shiny gpu-api. I'm wondering if its possible/desirable to take it a step further - add convenient api...
io_uring allows for async file opening, so it's possible that AsyncIOFromFile could take the queue object as an argument and make this operation optionally non-blocking depending on the backend. If...
I'm trying to read the default device audio data and use that to render a audio wave on the screen. On Android (13), the program reads the audio data but...