comparison src/video/picogui/SDL_pgvideo.h @ 1895:c121d94672cb

SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jul 2006 21:04:37 +0000
parents d910939febfa
children
comparison
equal deleted inserted replaced
1894:c69cee13dd76 1895:c121d94672cb
38 #define _THIS SDL_VideoDevice *this 38 #define _THIS SDL_VideoDevice *this
39 39
40 40
41 /* Private display data */ 41 /* Private display data */
42 42
43 struct SDL_PrivateVideoData { 43 struct SDL_PrivateVideoData
44 pghandle wApp, wCanvas; /* PicoGUI widgets */ 44 {
45 pghandle bitmap; 45 pghandle wApp, wCanvas; /* PicoGUI widgets */
46 struct pgshmbitmap shm; /* shared memory info */ 46 pghandle bitmap;
47 struct pgmodeinfo mi; /* PicoGUI video mode info structure */ 47 struct pgshmbitmap shm; /* shared memory info */
48 struct pgmodeinfo mi; /* PicoGUI video mode info structure */
48 }; 49 };
49 50
50 #endif /* _SDL_pgvideo_h */ 51 #endif /* _SDL_pgvideo_h */
52 /* vi: set ts=4 sw=4 expandtab: */