comparison src/video/x11/SDL_x11window.h @ 3685:64ce267332c6

Switched from SDL_WindowID and SDL_TextureID to SDL_Window* and SDL_Texture* for code simplicity and improved performance.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 21 Jan 2010 06:21:52 +0000
parents e4a469d6ddab
children f7b03b6838cb
comparison
equal deleted inserted replaced
3684:cc564f08884f 3685:64ce267332c6
24 #ifndef _SDL_x11window_h 24 #ifndef _SDL_x11window_h
25 #define _SDL_x11window_h 25 #define _SDL_x11window_h
26 26
27 typedef struct 27 typedef struct
28 { 28 {
29 SDL_WindowID windowID; 29 SDL_Window *window;
30 Window window; 30 Window xwindow;
31 XIC ic; 31 XIC ic;
32 SDL_bool created; 32 SDL_bool created;
33 struct SDL_VideoData *videodata; 33 struct SDL_VideoData *videodata;
34 } SDL_WindowData; 34 } SDL_WindowData;
35 35