diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-30 17:03:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-30 19:53:08 +0300 |
commit | c2351483dc7c918a592f2a1f52745c6552fb7d0c (patch) | |
tree | 3bea6a36d7133b32bb67b037aad115b7785e6550 /src/openglgraphics.h | |
parent | 8e244c7e5b6c98b1a6e67d4e387a9c231a42b15c (diff) | |
download | plus-c2351483dc7c918a592f2a1f52745c6552fb7d0c.tar.gz plus-c2351483dc7c918a592f2a1f52745c6552fb7d0c.tar.bz2 plus-c2351483dc7c918a592f2a1f52745c6552fb7d0c.tar.xz plus-c2351483dc7c918a592f2a1f52745c6552fb7d0c.zip |
Add option for enable/disable window resize.
Diffstat (limited to 'src/openglgraphics.h')
-rw-r--r-- | src/openglgraphics.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/openglgraphics.h b/src/openglgraphics.h index 1047223ad..065a77512 100644 --- a/src/openglgraphics.h +++ b/src/openglgraphics.h @@ -48,7 +48,8 @@ class OpenGLGraphics : public Graphics 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, |