| 39 | namespace cinder { namespace app { |
| 40 | |
| 41 | bool Window::isFullScreen() const |
| 42 | { |
| 43 | testValid(); |
| 44 | |
| 45 | #if defined( CINDER_COCOA ) |
| 46 | return [mImpl isFullScreen]; |
| 47 | #else |
| 48 | return mImpl->isFullScreen(); |
| 49 | #endif |
| 50 | } |
| 51 | |
| 52 | void Window::setFullScreen( bool fullScreen, const FullScreenOptions &options ) |
| 53 | { |