aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/video_surface.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-12 08:38:26 -0400
committerPaul Gilbert2016-07-17 13:09:24 -0400
commit513723c82d5db078236421577924bd9cde29b99b (patch)
tree611f1a89a16ec26dfe04d7a5169549436f9d61f3 /engines/titanic/support/video_surface.h
parentc458c3c9b740602002cd0a130a99af8b10402806 (diff)
downloadscummvm-rg350-513723c82d5db078236421577924bd9cde29b99b.tar.gz
scummvm-rg350-513723c82d5db078236421577924bd9cde29b99b.tar.bz2
scummvm-rg350-513723c82d5db078236421577924bd9cde29b99b.zip
TITANIC: Making the AVISurface frameInfo a video surface
Diffstat (limited to 'engines/titanic/support/video_surface.h')
-rw-r--r--engines/titanic/support/video_surface.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/titanic/support/video_surface.h b/engines/titanic/support/video_surface.h
index c8cfb78cd4..254745805e 100644
--- a/engines/titanic/support/video_surface.h
+++ b/engines/titanic/support/video_surface.h
@@ -54,15 +54,15 @@ private:
void clipBounds(Rect &srcRect, Rect &destRect, CVideoSurface *srcSurface,
const Rect *subRect = nullptr, const Point *destPos = nullptr);
- void blitRect1(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
- void blitRect2(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
+ void blitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
+ void transBlitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src);
protected:
static int _videoSurfaceCounter;
protected:
CScreenManager *_screenManager;
Graphics::ManagedSurface *_rawSurface;
bool _pendingLoad;
- const void *_movieFrameInfo;
+ CVideoSurface *_movieFrameSurface;
int _field48;
int _videoSurfaceNum;
int _field50;
@@ -70,8 +70,8 @@ protected:
public:
CMovie *_movie;
DirectDrawSurface *_ddSurface;
- bool _blitFlag;
- bool _blitStyleFlag;
+ bool _fastBlitFlag;
+ bool _transBlitFlag;
CResourceKey _resourceKey;
TransparencyMode _transparencyMode;
public:
@@ -258,9 +258,9 @@ public:
virtual bool proc45();
/**
- * Duplicates movie frame info
- */
- virtual void *dupMovieFrameInfo() const = 0;
+ * Duplicates movie frame surface
+ */
+ virtual CVideoSurface *dupMovieFrame() const = 0;
/**
* Frees the underlying surface
@@ -285,11 +285,11 @@ public:
/**
*
*/
- void setMovieFrameInfo(const void *frameInfo) { _movieFrameInfo = frameInfo; }
+ void setMovieFrameSurface(CVideoSurface *frameSurface) { _movieFrameSurface = frameSurface; }
/**
*/
- const void *getMovieFrameInfo() const { return _movieFrameInfo; }
+ CVideoSurface *getMovieFrameSurface() const { return _movieFrameSurface; }
/**
* Get the pixels associated with the surface. Only valid when the
@@ -497,9 +497,9 @@ public:
virtual void transPixelate();
/**
- * Duplicates movie frame info
+ * Duplicates movie frame surface
*/
- virtual void *dupMovieFrameInfo() const;
+ virtual CVideoSurface *dupMovieFrame() const;
/**