comparison src/video/directfb/SDL_DirectFB_window.c @ 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 62d4992e5a92
children f7b03b6838cb
comparison
equal deleted inserted replaced
3684:cc564f08884f 3685:64ce267332c6
138 138
139 /* Make it the top most window. */ 139 /* Make it the top most window. */
140 windata->window->RaiseToTop(windata->window); 140 windata->window->RaiseToTop(windata->window);
141 141
142 /* remember parent */ 142 /* remember parent */
143 windata->sdl_id = window->id; 143 windata->window = window;
144 144
145 /* Add to list ... */ 145 /* Add to list ... */
146 146
147 windata->next = devdata->firstwin; 147 windata->next = devdata->firstwin;
148 windata->opacity = 0xFF; 148 windata->opacity = 0xFF;