aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2014-06-19 10:24:57 +0300
committerEugene Sandulenko2014-06-19 10:25:24 +0300
commit0a07cf1481cf00d872f65040963ee70e084aac5a (patch)
treed21ea22a97a7842475589e3f851e65ddd69fbe3c /engines/fullpipe/gfx.h
parente395343064936cc04f777bb12391c34bdecbd992 (diff)
downloadscummvm-rg350-0a07cf1481cf00d872f65040963ee70e084aac5a.tar.gz
scummvm-rg350-0a07cf1481cf00d872f65040963ee70e084aac5a.tar.bz2
scummvm-rg350-0a07cf1481cf00d872f65040963ee70e084aac5a.zip
FULLPIPE: Draw transparent surfaces
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index d4d70fc34b..d94dd40452 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -47,7 +47,7 @@ struct Bitmap {
void load(Common::ReadStream *s);
void decode(int32 *palette);
- void putDib(int x, int y, int32 *palette);
+ void putDib(int x, int y, int32 *palette, int alpha);
bool putDibRB(int32 *palette);
void putDibCB(int32 *palette);
@@ -59,8 +59,8 @@ struct Bitmap {
Bitmap *reverseImage(bool flip = true);
Bitmap *flipVertical();
- void drawShaded(int type, int x, int y, byte *palette);
- void drawRotated(int x, int y, int angle, byte *palette);
+ void drawShaded(int type, int x, int y, byte *palette, int alpha);
+ void drawRotated(int x, int y, int angle, byte *palette, int alpha);
bool isPixelHitAtPos(int x, int y);
};