Mercurial > sdl-ios-xcode
view test/testnativex11.c @ 3604:e569bbb266eb
Fixed bug #915
GNU-isms should be avoided wherever possible for portability, please avoid the use of GNU-isms in your code, this may be problematic when using this library in projects which use non-GNU-compliant compilers.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 30 Dec 2009 19:38:08 +0000 |
parents | 089a77aebb7d |
children |
line wrap: on
line source
#include "testnative.h" #ifdef TEST_NATIVE_X11 static void *CreateWindowX11(int w, int h); static void DestroyWindowX11(void *window); NativeWindowFactory X11WindowFactory = { "x11", CreateWindowX11, DestroyWindowX11 }; static Display *dpy; static void * CreateWindowX11(int w, int h) { Window window = 0; dpy = XOpenDisplay(NULL); if (dpy) { window = XCreateSimpleWindow(dpy, DefaultRootWindow(dpy), 0, 0, w, h, 0, 0, 0); XMapRaised(dpy, window); XSync(dpy, False); } return (void *) window; } static void DestroyWindowX11(void *window) { if (dpy) { XDestroyWindow(dpy, (Window) window); XCloseDisplay(dpy); } } #endif