diff options
author | Johannes Schickel | 2011-08-08 21:27:32 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-08-09 00:03:10 +0200 |
commit | 222064cdb64ba560b53d9cb6b3f07c915eb58d12 (patch) | |
tree | 0a3d1da4521fdedea8c2681fa03a08646a1ea8d1 | |
parent | c3cfdd36a55958b6d08a3f405c9e7c30a14aa89d (diff) | |
download | scummvm-rg350-222064cdb64ba560b53d9cb6b3f07c915eb58d12.tar.gz scummvm-rg350-222064cdb64ba560b53d9cb6b3f07c915eb58d12.tar.bz2 scummvm-rg350-222064cdb64ba560b53d9cb6b3f07c915eb58d12.zip |
BACKENDS: Add PaletteManager interface as comments to GraphicsManager.
This should be a little more comfortable about finding out what's needed to
implement a new graphics manager.
-rw-r--r-- | backends/graphics/graphics.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/graphics/graphics.h b/backends/graphics/graphics.h index 20924ed581..3f282df587 100644 --- a/backends/graphics/graphics.h +++ b/backends/graphics/graphics.h @@ -84,6 +84,10 @@ public: virtual void setCursorPalette(const byte *colors, uint start, uint num) = 0; virtual void displayMessageOnOSD(const char *msg) {} + + // Graphics::PaletteManager interface + //virtual void setPalette(const byte *colors, uint start, uint num) = 0; + //virtual void grabPalette(byte *colors, uint start, uint num) = 0; }; #endif |