MCPcopy Create free account
hub / github.com/cinder/Cinder / setFullScreen

Method setFullScreen

include/cinder/app/Window.h:167–167  ·  view source on GitHub ↗

Sets whether the Window will be created full-screen with FullScreenOptions \a options. Default is \c false. If \t true, FullScreenOptions mode defaults to kiosk.

Source from the content-addressed store, hash-verified

165 const FullScreenOptions& getFullScreenOptions() const { return mFullScreenOptions; }
166 //! Sets whether the Window will be created full-screen with FullScreenOptions \a options. Default is \c false. If \t true, FullScreenOptions mode defaults to kiosk.
167 void setFullScreen( bool fullScreen = true, const FullScreenOptions &options = FullScreenOptions() ) { mFullScreen = fullScreen; mFullScreenOptions = options; }
168 //! Sets whether the Window will be created full-screen. Default is \c false.
169 Format& fullScreen( bool fs = true ) { mFullScreen = fs; return *this; }
170 //! Returns the size in points at which the Window will be created. Default is 640 x 480.

Callers 1

setFullScreenFunction · 0.45

Calls 1

FullScreenOptionsFunction · 0.70

Tested by

no test coverage detected