aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/sdl-1.2.15/src/video/SDL_sysvideo.h
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/SDL_sysvideo.h
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/SDL_sysvideo.h')
-rw-r--r--distrib/sdl-1.2.15/src/video/SDL_sysvideo.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/distrib/sdl-1.2.15/src/video/SDL_sysvideo.h b/distrib/sdl-1.2.15/src/video/SDL_sysvideo.h
index 436450e..65287b4 100644
--- a/distrib/sdl-1.2.15/src/video/SDL_sysvideo.h
+++ b/distrib/sdl-1.2.15/src/video/SDL_sysvideo.h
@@ -217,6 +217,21 @@ struct SDL_VideoDevice {
/* Get some platform dependent window information */
int (*GetWMInfo)(_THIS, SDL_SysWMinfo *info);
+ /* set window position */
+ void (*SetWindowPos)(_THIS, int x, int y);
+
+ /* get window position */
+ void (*GetWindowPos)(_THIS, int *px, int *py);
+
+ /* determine if the window is fully visible on screen */
+ int (*IsWindowVisible)(_THIS, int recenter);
+
+ /* get main monitor's resolution */
+ int (*GetMonitorDPI)(_THIS, int *xdpi, int *ydpi);
+
+ /* get nearest monitor's rectangle */
+ int (*GetMonitorRect)(_THIS, SDL_Rect* rect);
+
/* * * */
/* Cursor manager functions */