comparison src/video/SDL_sysvideo.h @ 3161:494559cc723b

OpenPandora support added by David Carré
author Sam Lantinga <slouken@libsdl.org>
date Sun, 31 May 2009 11:53:12 +0000
parents 7dc982143c06
children 94fb40a4a9a7
comparison
equal deleted inserted replaced
3160:210e209b87cc 3161:494559cc723b
316 /* * * */ 316 /* * * */
317 /* Data private to this driver */ 317 /* Data private to this driver */
318 void *driverdata; 318 void *driverdata;
319 struct SDL_GLDriverData *gl_data; 319 struct SDL_GLDriverData *gl_data;
320 320
321 #if SDL_VIDEO_DRIVER_PANDORA
322 struct SDL_PrivateGLESData *gles_data;
323 #endif
324
321 /* * * */ 325 /* * * */
322 /* The function used to dispose of this structure */ 326 /* The function used to dispose of this structure */
323 void (*free) (_THIS); 327 void (*free) (_THIS);
324 }; 328 };
325 329
400 #if SDL_VIDEO_DRIVER_DUMMY 404 #if SDL_VIDEO_DRIVER_DUMMY
401 extern VideoBootStrap DUMMY_bootstrap; 405 extern VideoBootStrap DUMMY_bootstrap;
402 #endif 406 #endif
403 #if SDL_VIDEO_DRIVER_NDS 407 #if SDL_VIDEO_DRIVER_NDS
404 extern VideoBootStrap NDS_bootstrap; 408 extern VideoBootStrap NDS_bootstrap;
409 #endif
410 #if SDL_VIDEO_DRIVER_PANDORA
411 extern VideoBootStrap PND_bootstrap;
405 #endif 412 #endif
406 413
407 #define SDL_CurrentDisplay (_this->displays[_this->current_display]) 414 #define SDL_CurrentDisplay (_this->displays[_this->current_display])
408 415
409 extern SDL_VideoDevice *SDL_GetVideoDevice(); 416 extern SDL_VideoDevice *SDL_GetVideoDevice();