aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2014-06-17 15:24:42 +0300
committerEugene Sandulenko2014-06-17 15:24:42 +0300
commit6c8d48c5a533eac4494c231b9f488080e09e15b3 (patch)
tree62452cd1d78461e06b0847af3e69c5467e81cc10 /engines/fullpipe/gfx.h
parent7c444319cbb14b95a5fe2c7cf2c5471ab065c961 (diff)
downloadscummvm-rg350-6c8d48c5a533eac4494c231b9f488080e09e15b3.tar.gz
scummvm-rg350-6c8d48c5a533eac4494c231b9f488080e09e15b3.tar.bz2
scummvm-rg350-6c8d48c5a533eac4494c231b9f488080e09e15b3.zip
FULLPIPE: Cleanup gfx code
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index 576ff7ee39..d4d70fc34b 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -56,14 +56,13 @@ struct Bitmap {
void copierKeyColor(uint32 *dest, byte *src, int len, int keyColor, int32 *palette, bool cb05_format);
void copier(uint32 *dest, byte *src, int len, int32 *palette, bool cb05_format);
- Bitmap *reverseImage();
+ 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);
bool isPixelHitAtPos(int x, int y);
- bool isPixelAtHitPosRB(int x, int y);
};
class Picture : public MemoryObject {