aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/surface.h
diff options
context:
space:
mode:
authorSven Hesse2010-09-30 13:03:51 +0000
committerSven Hesse2010-09-30 13:03:51 +0000
commit89f946ba3edde6cf1fa3b9d0eddd56aecfaee394 (patch)
treee246d935973056821bde8a20053d6818ac9c8f40 /engines/gob/surface.h
parent3ab8bf16a27f34ed865edd7c028d0dff90448622 (diff)
downloadscummvm-rg350-89f946ba3edde6cf1fa3b9d0eddd56aecfaee394.tar.gz
scummvm-rg350-89f946ba3edde6cf1fa3b9d0eddd56aecfaee394.tar.bz2
scummvm-rg350-89f946ba3edde6cf1fa3b9d0eddd56aecfaee394.zip
GOB: Transparency support for 16bit surfaces
svn-id: r52950
Diffstat (limited to 'engines/gob/surface.h')
-rw-r--r--engines/gob/surface.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/gob/surface.h b/engines/gob/surface.h
index 625462e2b7..9a26dbc79b 100644
--- a/engines/gob/surface.h
+++ b/engines/gob/surface.h
@@ -93,14 +93,14 @@ public:
ConstPixel get(uint16 x = 0, uint16 y = 0) const;
void blit(const Surface &from, int16 left, int16 top, int16 right, int16 bottom,
- int16 x, int16 y, int16 transp = -1);
- void blit(const Surface &from, int16 x, int16 y, int16 transp = -1);
- void blit(const Surface &from, int16 transp = -1);
+ int16 x, int16 y, int32 transp = -1);
+ void blit(const Surface &from, int16 x, int16 y, int32 transp = -1);
+ void blit(const Surface &from, int32 transp = -1);
void blitScaled(const Surface &from, int16 left, int16 top, int16 right, int16 bottom,
- int16 x, int16 y, Common::Rational scale, int16 transp = -1);
- void blitScaled(const Surface &from, int16 x, int16 y, Common::Rational scale, int16 transp = -1);
- void blitScaled(const Surface &from, Common::Rational scale, int16 transp = -1);
+ int16 x, int16 y, Common::Rational scale, int32 transp = -1);
+ void blitScaled(const Surface &from, int16 x, int16 y, Common::Rational scale, int32 transp = -1);
+ void blitScaled(const Surface &from, Common::Rational scale, int32 transp = -1);
void fillRect(uint16 left, uint16 top, uint16 right, uint16 bottom, uint32 color);
void fill(uint32 color);