Esempio n. 1
0
StWindow::StWindow()
: myWin(new StWindowImpl(new StResourceManager(), (StNativeWin_t )NULL)),
  myTargetFps(0.0),
  myWasUsed(false),
  myIsForcedStereo(false) {
    copySignals();
}
Esempio n. 2
0
StWindow::StWindow(const StNativeWin_t theParentWindow)
: myWin(new StWindowImpl(theParentWindow)),
  myTargetFps(0.0),
  myWasUsed(false),
  myIsForcedStereo(false) {
    copySignals();
}
Esempio n. 3
0
StWindow::StWindow(const StHandle<StResourceManager>& theResMgr,
                   const StNativeWin_t                theParentWindow)
: myWin(new StWindowImpl(theResMgr, theParentWindow)),
  myTargetFps(0.0),
  myWasUsed(false),
  myIsForcedStereo(false) {
    copySignals();
}