conforms platformWindow<implementations> to use _setVideoMode internals so that those are called by

void PlatformWindow::setVideoMode(const GFXVideoMode &mode)
{
   _setVideoMode(mode);
 getScreenResChangeSignal().trigger(this, true);
}

allowing the resize trigger to go off, as well as any other shared functionality we want to slim the per-implementation specs down to later down the line
This commit is contained in:
AzaezelX 2019-11-06 22:24:12 -06:00
parent e75124fdf7
commit 9b2c189929
7 changed files with 7 additions and 8 deletions

View file

@ -511,7 +511,7 @@ public:
virtual void* getPlatformDrawable() const = 0;
protected:
virtual void _setFullscreen(const bool fullScreen) {};
virtual void _setVideoMode(const GFXVideoMode &mode) {};
virtual void _setVideoMode(const GFXVideoMode &mode) = 0;
};
#endif