aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/video_surface.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-03 14:22:33 -0400
committerPaul Gilbert2016-07-15 19:27:09 -0400
commit3f12927b77735c17eedfbe14f36607ddc6580c83 (patch)
treeb559ab9fedc3a70ff8e3bad864dff01fa75ac4bd /engines/titanic/support/video_surface.h
parent5ab33f117a0bc3451a1d30024208c45a2a548a4b (diff)
downloadscummvm-rg350-3f12927b77735c17eedfbe14f36607ddc6580c83.tar.gz
scummvm-rg350-3f12927b77735c17eedfbe14f36607ddc6580c83.tar.bz2
scummvm-rg350-3f12927b77735c17eedfbe14f36607ddc6580c83.zip
TITANIC: Added CVideoSurface transPixelate
Diffstat (limited to 'engines/titanic/support/video_surface.h')
-rw-r--r--engines/titanic/support/video_surface.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/titanic/support/video_surface.h b/engines/titanic/support/video_surface.h
index 9b7e0fbaec..45c6182fe6 100644
--- a/engines/titanic/support/video_surface.h
+++ b/engines/titanic/support/video_surface.h
@@ -224,6 +224,12 @@ public:
*/
virtual bool load() = 0;
+ /**
+ * Does a replacement of transparent pixels on certain lines at regular
+ * intervals. This is totally weird
+ */
+ virtual void transPixelate() = 0;
+
virtual bool proc45();
/**
@@ -424,6 +430,12 @@ public:
virtual bool load();
/**
+ * Does a replacement of transparent pixels on certain lines at regular
+ * intervals. This is totally weird
+ */
+ virtual void transPixelate();
+
+ /**
* Frees the underlying surface
*/
virtual int freeSurface();