aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2014-06-17 14:55:26 +0300
committerEugene Sandulenko2014-06-17 14:55:26 +0300
commitf404c842a11c17802209cde5773c66020f97838b (patch)
tree98c342193d90a50b2307a4bfafc8d58d6d31820f /engines/fullpipe/gfx.h
parent58472402341a6445245e8fccccf041a17d362983 (diff)
downloadscummvm-rg350-f404c842a11c17802209cde5773c66020f97838b.tar.gz
scummvm-rg350-f404c842a11c17802209cde5773c66020f97838b.tar.bz2
scummvm-rg350-f404c842a11c17802209cde5773c66020f97838b.zip
FULLPIPE: Skip internal 565 rpresentation for sprites and directly render them in 32bit
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index 48c90a6c31..0ad81af646 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -47,13 +47,13 @@ struct Bitmap {
void load(Common::ReadStream *s);
void decode(int32 *palette);
void putDib(int x, int y, int32 *palette);
- bool putDibRB(int32 *palette, int x = -1, int y = -1);
+ bool putDibRB(int32 *palette);
void putDibCB(int32 *palette);
- void colorFill(uint16 *dest, int len, int32 color);
- void paletteFill(uint16 *dest, byte *src, int len, int32 *palette);
- void copierKeyColor(uint16 *dest, byte *src, int len, int keyColor, int32 *palette, bool cb05_format);
- void copier(uint16 *dest, byte *src, int len, int32 *palette, bool cb05_format);
+ void colorFill(uint32 *dest, int len, int32 color);
+ void paletteFill(uint32 *dest, byte *src, int len, int32 *palette);
+ 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 *reverseImageRB();