sdl12_compat/0001-SDL_GetWMInfo-work-like-1.2-when-SDL_SetVideoMode-ha.patch
Jan Engelhardt 744ab7058f - Add 0001-SDL_GetWMInfo-work-like-1.2-when-SDL_SetVideoMode-ha.patch
to unbreak use with schismtracker.
- Add 0001-Set-pixels-in-SDL_CreateYUVOverlay-Fix-164.patch
  to unbreak use with MPlayer.
- Hot enable sdl12-compat to be the SDL1 replacement [boo#1198182]

OBS-URL: https://build.opensuse.org/package/show/games/sdl12_compat?expand=0&rev=7
2022-05-16 12:44:32 +00:00

71 lines
2.6 KiB
Diff

From 32bcfa763d90cd2391493a396f21b98716b52bda Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <icculus@icculus.org>
Date: Tue, 8 Mar 2022 15:19:41 -0500
Subject: [PATCH] SDL_GetWMInfo: work like 1.2 when SDL_SetVideoMode() hasn't
been called yet.
Fixes #163.
---
src/SDL12_compat.c | 24 +++++++++++++++++++++---
1 file changed, 21 insertions(+), 3 deletions(-)
diff --git a/src/SDL12_compat.c b/src/SDL12_compat.c
index b5a851b..ea99f2c 100644
--- a/src/SDL12_compat.c
+++ b/src/SDL12_compat.c
@@ -6218,6 +6218,9 @@ DECLSPEC int SDLCALL
SDL_GetWMInfo(SDL12_SysWMinfo *info12)
{
SDL_SysWMinfo info20;
+ SDL_bool temp_window = SDL_FALSE;
+ SDL_Window *win20 = VideoWindow20;
+ int rc;
if (info12->version.major > 1) {
SDL20_SetError("Requested version is unsupported");
@@ -6227,15 +6230,30 @@ SDL_GetWMInfo(SDL12_SysWMinfo *info12)
return 0; /* some programs only test against 0, not -1 */
}
+ if (win20 == NULL) {
+ /* It was legal to call SDL_GetWMInfo without SDL_SetVideoMode() on X11 and Windows (and others...?) in 1.2. */
+ win20 = SDL20_CreateWindow("SDL_GetWMInfo support window", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 128, 128, SDL_WINDOW_HIDDEN);
+ if (!win20) {
+ return 0;
+ }
+ temp_window = SDL_TRUE;
+ }
+
SDL_zero(info20);
SDL_VERSION(&info20.version);
- if (!SDL20_GetWindowWMInfo(VideoWindow20, &info20)) {
+ rc = SDL20_GetWindowWMInfo(win20, &info20);
+
+ if (temp_window) {
+ SDL20_DestroyWindow(win20);
+ }
+
+ if (!rc) {
return 0; /* some programs only test against 0, not -1 */
}
#if defined(SDL_VIDEO_DRIVER_WINDOWS)
SDL_assert(info20.subsystem == SDL_SYSWM_WINDOWS);
- info12->window = info20.info.win.window;
+ info12->window = temp_window ? 0 : info20.info.win.window;
if (SDL_VERSIONNUM(info12->version.major, info12->version.minor, info12->version.patch) >= SDL_VERSIONNUM(1, 2, 5)) {
info12->hglrc = (HGLRC) VideoGLContext20;
}
@@ -6243,7 +6261,7 @@ SDL_GetWMInfo(SDL12_SysWMinfo *info12)
SDL_assert(info20.subsystem == SDL_SYSWM_X11);
info12->subsystem = SDL12_SYSWM_X11;
info12->info.x11.display = info20.info.x11.display;
- info12->info.x11.window = info20.info.x11.window;
+ info12->info.x11.window = temp_window ? 0 : info20.info.x11.window;
if (SDL_VERSIONNUM(info12->version.major, info12->version.minor, info12->version.patch) >= SDL_VERSIONNUM(1, 0, 2)) {
info12->info.x11.fswindow = 0; /* these don't exist in SDL2. */
info12->info.x11.wmwindow = 0;
--
2.36.1