Results 96 comments of expikr

> user-input events are about 20 per second max? Err, I think you're off by about three orders of magnitude there. Try 8000?

minimal test app ```c #define SDL_MAIN_USE_CALLBACKS #include #include #include static char debug_string[32]; static bool system_scale_enabled; typedef struct { SDL_Window *window; SDL_Renderer *renderer; } AppState; SDL_AppResult SDL_AppInit(void **appstate, int argc, char...

Your code never enables relative mode, so of course it will be stopped by the screen border, because non-relative mode uses the OS cursor motion instead of raw motion, and...

I'm having difficulty parsing your description of the behaviour. Can you explicitly state what object/subject you are referring to instead of using pronouns?

heads-up: https://github.com/libsdl-org/SDL/commit/f52f982b1e9ce2f510f2c26c6119e79dbb5b20a0 slightly changes the behavior of the mode values to behave as a bitflag instead.