From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- contrib/SDL-3.2.8/test/relative_mode.markdown | 58 --------------------------- 1 file changed, 58 deletions(-) delete mode 100644 contrib/SDL-3.2.8/test/relative_mode.markdown (limited to 'contrib/SDL-3.2.8/test/relative_mode.markdown') diff --git a/contrib/SDL-3.2.8/test/relative_mode.markdown b/contrib/SDL-3.2.8/test/relative_mode.markdown deleted file mode 100644 index 0a43b6b..0000000 --- a/contrib/SDL-3.2.8/test/relative_mode.markdown +++ /dev/null @@ -1,58 +0,0 @@ -Relative mode testing -===================== - -See test program at the bottom of this file. - -Initial tests: - - - When in relative mode, the mouse shouldn't be moveable outside of the window. - - When the cursor is outside the window when relative mode is enabled, mouse - clicks should not go to whatever app was under the cursor previously. - - When alt/cmd-tabbing between a relative mode app and another app, clicks when - in the relative mode app should also not go to whatever app was under the - cursor previously. - - -Code -==== - - #include - - int PollEvents() - { - SDL_Event event; - while (SDL_PollEvent(&event)) - { - switch (event.type) - { - case SDL_EVENT_QUIT: - return 1; - default: - break; - } - } - - return 0; - } - - int main(int argc, char *argv[]) - { - SDL_Window *win; - - SDL_Init(SDL_INIT_VIDEO); - - win = SDL_CreateWindow("Test", 800, 600, 0); - SDL_SetWindowRelativeMouseMode(win, true); - - while (1) - { - if (PollEvents()) - break; - } - - SDL_DestroyWindow(win); - - SDL_Quit(); - - return 0; - } -- cgit v1.2.3