aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichieSams2013-09-16 00:04:03 -0500
committerRichieSams2013-09-16 00:04:03 -0500
commit3a6cb86489c7e0a7c171dbb9d317dd2cdbf4cccf (patch)
treeff985f605a3b63646003bc78a2bac5686c8af08c
parentcdd793ed224579870daa73061ff0478e179ff21d (diff)
downloadscummvm-rg350-3a6cb86489c7e0a7c171dbb9d317dd2cdbf4cccf.tar.gz
scummvm-rg350-3a6cb86489c7e0a7c171dbb9d317dd2cdbf4cccf.tar.bz2
scummvm-rg350-3a6cb86489c7e0a7c171dbb9d317dd2cdbf4cccf.zip
ZVISION: Add methods to clear and remove AlphaEntries
-rw-r--r--engines/zvision/render_manager.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/zvision/render_manager.h b/engines/zvision/render_manager.h
index e7030b06fe..2fc3f230df 100644
--- a/engines/zvision/render_manager.h
+++ b/engines/zvision/render_manager.h
@@ -122,6 +122,8 @@ public:
void renderBackbufferToScreen();
void processAlphaEntries();
+ void clearAlphaEntries() { _alphaDataEntries.clear(); }
+ void removeAlphaEntry(uint32 idNumber) { _alphaDataEntries.erase(idNumber); }
void copyRectToWorkingWindow(const uint16 *buffer, int32 destX, int32 destY, int32 imageWidth, int32 width, int32 height);
void copyRectToWorkingWindow(const uint16 *buffer, int32 destX, int32 destY, int32 imageWidth, int32 width, int32 height, int16 alphaColor, uint32 idNumber);