From fe7e9d9d53e61984393ebb94e1ae5ca8b7723e73 Mon Sep 17 00:00:00 2001 From: Holmes Futrell Date: Thu, 17 Jul 2008 23:45:58 +0000 Subject: [PATCH] Added declaration of UIKit video bootstrap. Added retained_backing property to glconfig structure. --- src/video/SDL_sysvideo.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/video/SDL_sysvideo.h b/src/video/SDL_sysvideo.h index dd40449c7..13d820bdb 100644 --- a/src/video/SDL_sysvideo.h +++ b/src/video/SDL_sysvideo.h @@ -284,6 +284,7 @@ struct SDL_VideoDevice int multisamplebuffers; int multisamplesamples; int accelerated; + int retained_backing; int driver_loaded; char driver_path[256]; void *dll_handle; @@ -367,6 +368,9 @@ extern VideoBootStrap RISCOS_bootstrap; #if SDL_VIDEO_DRIVER_OS2FS extern VideoBootStrap OS2FSLib_bootstrap; #endif +#if SDL_VIDEO_DRIVER_UIKIT +extern VideoBootStrap UIKIT_bootstrap; +#endif #if SDL_VIDEO_DRIVER_DUMMY extern VideoBootStrap DUMMY_bootstrap; #endif