aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/video_surface.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-12 19:19:06 -0400
committerPaul Gilbert2016-07-17 13:09:36 -0400
commit6331e3814a7fe501056ec5a356924b9c4c40c16f (patch)
tree39101c1e92b7f58e87b05b16f6f48ef7e4c62002 /engines/titanic/support/video_surface.h
parentb843b2fd3385533955a325ff8819e37ab3b0b2f0 (diff)
downloadscummvm-rg350-6331e3814a7fe501056ec5a356924b9c4c40c16f.tar.gz
scummvm-rg350-6331e3814a7fe501056ec5a356924b9c4c40c16f.tar.bz2
scummvm-rg350-6331e3814a7fe501056ec5a356924b9c4c40c16f.zip
TITANIC: Fleshing out & fixes for video surface blit methods
Diffstat (limited to 'engines/titanic/support/video_surface.h')
-rw-r--r--engines/titanic/support/video_surface.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/titanic/support/video_surface.h b/engines/titanic/support/video_surface.h
index a0e74b5b3d..040161fe8e 100644
--- a/engines/titanic/support/video_surface.h
+++ b/engines/titanic/support/video_surface.h
@@ -55,8 +55,9 @@ private:
void clipBounds(Rect &srcRect, Rect &destRect, CVideoSurface *srcSurface,
const Rect *subRect = nullptr, const Point *destPos = nullptr);
- void blitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
- void transBlitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
+ void blitRect1(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
+ void blitRect2(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
+ void movieBlitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
protected:
static int _videoSurfaceCounter;
protected: