Mercurial > sdl-ios-xcode
comparison src/video/SDL_video.c @ 1931:103c6fec2a60
The Mac OS X Cocoa video driver is under construction...
Note that SDLmain is no longer necessary on Mac OS X. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 23 Jul 2006 09:11:10 +0000 |
parents | 9483df98e011 |
children | 7ee5297340f7 |
comparison
equal
deleted
inserted
replaced
1930:9483df98e011 | 1931:103c6fec2a60 |
---|---|
41 #endif | 41 #endif |
42 #endif /* SDL_VIDEO_OPENGL */ | 42 #endif /* SDL_VIDEO_OPENGL */ |
43 | 43 |
44 /* Available video drivers */ | 44 /* Available video drivers */ |
45 static VideoBootStrap *bootstrap[] = { | 45 static VideoBootStrap *bootstrap[] = { |
46 #if SDL_VIDEO_DRIVER_QUARTZ | 46 #if SDL_VIDEO_DRIVER_COCOA |
47 &QZ_bootstrap, | 47 &COCOA_bootstrap, |
48 #endif | 48 #endif |
49 #if SDL_VIDEO_DRIVER_X11 | 49 #if SDL_VIDEO_DRIVER_X11 |
50 &X11_bootstrap, | 50 &X11_bootstrap, |
51 #endif | 51 #endif |
52 #if SDL_VIDEO_DRIVER_DGA | 52 #if SDL_VIDEO_DRIVER_DGA |