diff 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
line wrap: on
line diff
--- a/src/video/SDL_sysvideo.h	Thu May 28 09:39:14 2009 +0000
+++ b/src/video/SDL_sysvideo.h	Sun May 31 11:53:12 2009 +0000
@@ -318,6 +318,10 @@
     void *driverdata;
     struct SDL_GLDriverData *gl_data;
 
+#if SDL_VIDEO_DRIVER_PANDORA
+    struct SDL_PrivateGLESData *gles_data;
+#endif
+
     /* * * */
     /* The function used to dispose of this structure */
     void (*free) (_THIS);
@@ -403,6 +407,9 @@
 #if SDL_VIDEO_DRIVER_NDS
 extern VideoBootStrap NDS_bootstrap;
 #endif
+#if SDL_VIDEO_DRIVER_PANDORA
+extern VideoBootStrap PND_bootstrap;
+#endif
 
 #define SDL_CurrentDisplay	(_this->displays[_this->current_display])