summaryrefslogtreecommitdiff
path: root/libre/sdl/SDL-1.2.10-GrabNotViewable.patch
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2022-05-22 16:50:38 -0400
committerDavid P <megver83@parabola.nu>2022-05-22 16:50:38 -0400
commita3b5e5acd774ce8d48d647e5a35f2ce2c7e505c7 (patch)
tree353b8200faef8a8705159d9166e32b88498b0b23 /libre/sdl/SDL-1.2.10-GrabNotViewable.patch
parentbe96d1ccac7ec443b1a43f82448fd05408e26d97 (diff)
downloadabslibre-a3b5e5acd774ce8d48d647e5a35f2ce2c7e505c7.tar.gz
abslibre-a3b5e5acd774ce8d48d647e5a35f2ce2c7e505c7.tar.bz2
abslibre-a3b5e5acd774ce8d48d647e5a35f2ce2c7e505c7.zip
deprecate sdl
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/sdl/SDL-1.2.10-GrabNotViewable.patch')
-rw-r--r--libre/sdl/SDL-1.2.10-GrabNotViewable.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/libre/sdl/SDL-1.2.10-GrabNotViewable.patch b/libre/sdl/SDL-1.2.10-GrabNotViewable.patch
deleted file mode 100644
index 128cf3510..000000000
--- a/libre/sdl/SDL-1.2.10-GrabNotViewable.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Makes SDL-1.2 SDL_WM_GrabInput() non-blocking in case of SDL window is not
-viewable. Patch provided by <pbonzini@redhat.com>.
-See <http://bugzilla.libsdl.org/show_bug.cgi?id=1155>.
-
---- ./src/video/x11/SDL_x11wm.c 2007-12-31 04:48:13.000000000 +0000
-+++ ./src/video/x11/SDL_x11wm.c 2009-01-15 10:27:14.000000000 +0000
-@@ -351,13 +351,14 @@ SDL_GrabMode X11_GrabInputNoLock(_THIS,
- result = XGrabPointer(SDL_Display, SDL_Window, True, 0,
- GrabModeAsync, GrabModeAsync,
- SDL_Window, None, CurrentTime);
-- if ( result == GrabSuccess ) {
-+ if ( result == GrabSuccess || result == GrabNotViewable ) {
- break;
- }
- SDL_Delay(100);
- }
- if ( result != GrabSuccess ) {
- /* Uh, oh, what do we do here? */ ;
-+ return(SDL_GRAB_OFF);
- }
- /* Now grab the keyboard */
- XGrabKeyboard(SDL_Display, WMwindow, True,