aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-09-04 22:13:44 +0300
committerEugene Sandulenko2013-09-06 14:51:25 +0300
commitd0484467688e896937f232766e9104bbd3377144 (patch)
tree5f90488f581bef778d028862bcbf2ca4150cf3f3 /engines/fullpipe/gfx.h
parentff9cd54fd15c07db4c31f81bff318db26a47297f (diff)
downloadscummvm-rg350-d0484467688e896937f232766e9104bbd3377144.tar.gz
scummvm-rg350-d0484467688e896937f232766e9104bbd3377144.tar.bz2
scummvm-rg350-d0484467688e896937f232766e9104bbd3377144.zip
FULLPIPE: Implement Bitmap::isPixelHitAtPos()
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index 6818fe6b2d..ccfc72f96f 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -41,6 +41,7 @@ struct Bitmap {
Bitmap();
Bitmap(Bitmap *src);
+ ~Bitmap();
void load(Common::ReadStream *s);
void putDib(int x, int y, int32 *palette);
@@ -62,6 +63,7 @@ struct Bitmap {
void drawRotated(int x, int y, int angle, byte *palette);
bool isPixelHitAtPos(int x, int y);
+ bool decompressRle2(Bitmap *res);
};
class Picture : public MemoryObject {