summaryrefslogtreecommitdiff
path: root/src/video/video_driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video/video_driver.hpp')
-rw-r--r--src/video/video_driver.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video/video_driver.hpp b/src/video/video_driver.hpp
index cc74df202..57945862a 100644
--- a/src/video/video_driver.hpp
+++ b/src/video/video_driver.hpp
@@ -99,6 +99,15 @@ public:
}
/**
+ * Has this video driver an efficient code path for palette animated 8-bpp sprites?
+ * @return True if the driver has an efficient code path for 8-bpp.
+ */
+ virtual bool HasEfficient8Bpp() const
+ {
+ return false;
+ }
+
+ /**
* An edit box lost the input focus. Abort character compositing if necessary.
*/
virtual void EditBoxLostFocus() {}