summaryrefslogtreecommitdiff
path: root/src/blitter/base.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/blitter/base.hpp')
-rw-r--r--src/blitter/base.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/blitter/base.hpp b/src/blitter/base.hpp
index 6a4e4196a..c05f21a5d 100644
--- a/src/blitter/base.hpp
+++ b/src/blitter/base.hpp
@@ -183,10 +183,15 @@ public:
virtual Blitter::PaletteAnimation UsePaletteAnimation() = 0;
/**
- * Get the naem of the blitter, the same as the Factory-instance returns.
+ * Get the name of the blitter, the same as the Factory-instance returns.
*/
virtual const char *GetName() = 0;
+ /**
+ * Get how many bytes are needed to store a pixel.
+ */
+ virtual int GetBytesPerPixel() = 0;
+
virtual ~Blitter() { }
};