comparison src/video/SDL_video.c @ 4701:d40bb3165d2b

Added (partially implemented) android video backend and associated files needed to build
author Paul Hunkin <paul@bieh.net>
date Thu, 10 Jun 2010 18:54:23 +1200
parents 9fa97c6b0014
children 1f7ad083fd3c
comparison
equal deleted inserted replaced
4700:cf23d9b8e606 4701:d40bb3165d2b
98 &DUMMY_bootstrap, 98 &DUMMY_bootstrap,
99 #endif 99 #endif
100 #if SDL_VIDEO_DRIVER_PANDORA 100 #if SDL_VIDEO_DRIVER_PANDORA
101 &PND_bootstrap, 101 &PND_bootstrap,
102 #endif 102 #endif
103 #if SDL_VIDEO_DRIVER_ANDROID
104 &Android_bootstrap,
105 #endif
103 NULL 106 NULL
104 }; 107 };
105 108
106 static SDL_VideoDevice *_this = NULL; 109 static SDL_VideoDevice *_this = NULL;
107 110