Mercurial > sdl-ios-xcode
view src/video/uikit/jumphack.c @ 4443:c598e440c87c
Implemented display mode functionality for UIKit.
The iPad (and iPhoneOS 3.2) introduce both a larger screen and the ability to
enumerate and configure external displays. This hooks up SDL's multi-display
API to this new functionality, and removes the hardcoded iPhone resolution.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 29 Apr 2010 22:53:18 -0400 |
parents | f55c87ae336b |
children | e8045ba3f79f |
line wrap: on
line source
/* * jumphack.c * SDLiPhoneOS * */ #include "jumphack.h" /* see SDL_uikitevents.m for more info */ /* stores the information we need to jump back */ jmp_buf env; /* returns the jump environment for setting / getting purposes */ jmp_buf * jump_env() { return &env; }