Ryan C. Gordon
Ryan C. Gordon
(Although we don't actually check for NULL at the moment, so technically the API already works like this on Unix.)
Adding RTLD_DEFAULT support (search all known symbols currently in the process) isn't impossible for Windows, but it isn't trivial. I'd rather not get into it at this point in the...
Putting in 3.2.0, expecting to bump to 3.x
This file got deleted in Sam's cleanup, so that's as updated as that's going to get!
This is _significantly_ better with the latest in revision control, but it's not perfect yet. You can see that the menu looks like it's sliding in/out to the top/left. In...
Okay, in SDL2, SDL_RenderSetViewport() sets a viewport modulated by the current scale, and SDL_RenderSetScale() just sets a new scale for later drawing. In SDL3, SDL_SetRenderViewport() sets a new viewport for...
Kinda feeling like we're going to run into a million more of these little rendering quirks unless we copy the SDL2 scale/viewport/logicalpresent logic wholesale into sdl2-compat, and never set any...
> copy the SDL2 scale/viewport/logicalpresent logic wholesale into sdl2-compat I think I'm going to take a run at this, but let's ship the milestone before I do, since it's going...
So building out something that works well with HTTP requests will make you understand why libcurl has been in active development for decades. Even before you get into HTTP/2, and...
Want to say no here, unless @slouken feels strongly about it. Getting degrees from radians is just: ```c degrees = radians * (180.0f / SDL_PI_F); ```