summaryrefslogtreecommitdiff
path: root/src/blitter
diff options
context:
space:
mode:
Diffstat (limited to 'src/blitter')
-rw-r--r--src/blitter/base.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/blitter/base.hpp b/src/blitter/base.hpp
index 6b19c290b..4ec25c38d 100644
--- a/src/blitter/base.hpp
+++ b/src/blitter/base.hpp
@@ -186,6 +186,14 @@ public:
virtual Blitter::PaletteAnimation UsePaletteAnimation() = 0;
/**
+ * Does this blitter require a separate animation buffer from the video backend?
+ */
+ virtual bool NeedsAnimationBuffer()
+ {
+ return false;
+ }
+
+ /**
* Get the name of the blitter, the same as the Factory-instance returns.
*/
virtual const char *GetName() = 0;