diff 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
line wrap: on
line diff
--- a/src/video/x11/SDL_x11window.h	Thu Jan 21 05:49:41 2010 +0000
+++ b/src/video/x11/SDL_x11window.h	Thu Jan 21 06:21:52 2010 +0000
@@ -26,8 +26,8 @@
 
 typedef struct
 {
-    SDL_WindowID windowID;
-    Window window;
+    SDL_Window *window;
+    Window xwindow;
     XIC ic;
     SDL_bool created;
     struct SDL_VideoData *videodata;