Mercurial > sdl-ios-xcode
view test/testnativex11.c @ 4837:2e446923c9fb
Fixed lots of little bugs in Win32 shaping and in SDL_CalculateShapeTree(). Still not actually showing anything on Windows, though there's no crashes and everything compiles fine. Bugger.
author | egottlieb |
---|---|
date | Fri, 06 Aug 2010 20:22:14 -0400 |
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