aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2012-07-23 10:13:06 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-07-23 10:13:06 -0700
commitd95f84da47d4e5c1f9bce2770400fd0d61b0c0b6 (patch)
treeb39ee901bb528b7e3593117cde724ef75d438b67 /distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c
parent2b3a42e7d0b441f71fc2e2b07269dd1f8151c977 (diff)
parente4c5d95ed37611acc6a186522315195b4ebfb9ef (diff)
downloadexternal_qemu-d95f84da47d4e5c1f9bce2770400fd0d61b0c0b6.zip
external_qemu-d95f84da47d4e5c1f9bce2770400fd0d61b0c0b6.tar.gz
external_qemu-d95f84da47d4e5c1f9bce2770400fd0d61b0c0b6.tar.bz2
Merge "Apply Android changes from sdl-1.2.12 to sdl-1.2.15"
Diffstat (limited to 'distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c')
-rw-r--r--distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c b/distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c
index f7d8073..6d24422 100644
--- a/distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c
+++ b/distrib/sdl-1.2.15/src/video/x11/SDL_x11video.c
@@ -68,6 +68,8 @@ static int X11_SetColors(_THIS, int firstcolor, int ncolors,
static int X11_SetGammaRamp(_THIS, Uint16 *ramp);
static void X11_VideoQuit(_THIS);
+int X11_wmXAdjust;
+int X11_wmYAdjust;
/* X11 driver bootstrap functions */
@@ -164,6 +166,11 @@ static SDL_VideoDevice *X11_CreateDevice(int devindex)
device->SetIcon = X11_SetIcon;
device->IconifyWindow = X11_IconifyWindow;
device->GrabInput = X11_GrabInput;
+ device->GetWindowPos = X11_GetWindowPos;
+ device->SetWindowPos = X11_SetWindowPos;
+ device->IsWindowVisible = X11_IsWindowVisible;
+ device->GetMonitorDPI = X11_GetMonitorDPI;
+ device->GetMonitorRect = X11_GetMonitorRect;
device->GetWMInfo = X11_GetWMInfo;
device->FreeWMCursor = X11_FreeWMCursor;
device->CreateWMCursor = X11_CreateWMCursor;
@@ -350,7 +357,9 @@ static void create_aux_windows(_THIS)
xattr.colormap = SDL_XColorMap;
FSwindow = XCreateWindow(SDL_Display, SDL_Root,
- x, y, 32, 32, 0,
+ x + X11_wmXAdjust,
+ y + X11_wmYAdjust,
+ 32, 32, 0,
this->hidden->depth, InputOutput, SDL_Visual,
CWOverrideRedirect | CWBackPixel | CWBorderPixel
| CWColormap,