diff options
Diffstat (limited to 'src/opengl1graphics.h')
-rw-r--r-- | src/opengl1graphics.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/opengl1graphics.h b/src/opengl1graphics.h index 87458d8b9..fd6ec2df0 100644 --- a/src/opengl1graphics.h +++ b/src/opengl1graphics.h @@ -45,10 +45,12 @@ class OpenGL1Graphics : public Graphics * the next call to setVideoMode(). Only implemented on MacOS for now. */ void setSync(bool sync); + bool getSync() const { return mSync; } - bool setVideoMode(int w, int h, int bpp, bool fs, bool hwaccel); + bool setVideoMode(int w, int h, int bpp, bool fs, + bool hwaccel, bool resize); bool drawImage(Image *image, int srcX, int srcY, |