diff options
author | Alexander Tkachev | 2016-06-03 17:44:26 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 7ff1f918084b8d41826ad869d8c9865e1d53e082 (patch) | |
tree | f9c876b13ae01a9c523ba059bed66c036ab343b9 /backends/base-backend.h | |
parent | 1c823b6c1d465bd894f7f37a963165ee009f35ea (diff) | |
download | scummvm-rg350-7ff1f918084b8d41826ad869d8c9865e1d53e082.tar.gz scummvm-rg350-7ff1f918084b8d41826ad869d8c9865e1d53e082.tar.bz2 scummvm-rg350-7ff1f918084b8d41826ad869d8c9865e1d53e082.zip |
GUI: Add copyRectToOSD()
I was lazy to implement that in OpenGLGraphicsManager and I'm not sure
it's implemented correctly in SurfaceSdlGraphicsManager, but it works
for me.
Diffstat (limited to 'backends/base-backend.h')
-rw-r--r-- | backends/base-backend.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/base-backend.h b/backends/base-backend.h index 598f682b32..7000d3b14a 100644 --- a/backends/base-backend.h +++ b/backends/base-backend.h @@ -33,6 +33,7 @@ public: virtual void initBackend(); virtual void displayMessageOnOSD(const char *msg); + virtual void copyRectToOSD(const void *buf, int pitch, int x, int y, int w, int h); virtual void fillScreen(uint32 col); }; |