aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.h
diff options
context:
space:
mode:
authorMax Horn2003-05-26 13:14:57 +0000
committerMax Horn2003-05-26 13:14:57 +0000
commit8eec984eb7aecf0afeff116e82acaefcdd377d3b (patch)
tree65203ec6416d1bccd40ef57c4aa7121b018d2f79 /scumm/gfx.h
parentbf565613b2daaf7b3e3a75ab4715517265ddadf8 (diff)
downloadscummvm-rg350-8eec984eb7aecf0afeff116e82acaefcdd377d3b.tar.gz
scummvm-rg350-8eec984eb7aecf0afeff116e82acaefcdd377d3b.tar.bz2
scummvm-rg350-8eec984eb7aecf0afeff116e82acaefcdd377d3b.zip
more const qualifiers
svn-id: r8002
Diffstat (limited to 'scumm/gfx.h')
-rw-r--r--scumm/gfx.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/scumm/gfx.h b/scumm/gfx.h
index 1f6e93ff16..ad0142b9a6 100644
--- a/scumm/gfx.h
+++ b/scumm/gfx.h
@@ -134,28 +134,28 @@ protected:
/* Bitmap decompressors */
bool decompressBitmap(byte *bgbak_ptr, byte *smap_ptr, int numLinesToProcess);
- void decodeStripEGA(byte *dst, byte *src, int height);
- void decodeStripOldEGA(byte *dst, byte *src, int height, int stripnr);
- void decompressMaskImgOld(byte *dst, byte *src, int stripnr);
- void unkDecodeA(byte *dst, byte *src, int height);
- void unkDecodeA_trans(byte *dst, byte *src, int height);
- void unkDecodeB(byte *dst, byte *src, int height);
- void unkDecodeB_trans(byte *dst, byte *src, int height);
- void unkDecodeC(byte *dst, byte *src, int height);
- void unkDecodeC_trans(byte *dst, byte *src, int height);
-
- void unkDecode7(byte *dst, byte *src, int height);
- void unkDecode8(byte *dst, byte *src, int height);
- void unkDecode9(byte *dst, byte *src, int height);
- void unkDecode10(byte *dst, byte *src, int height);
- void unkDecode11(byte *dst, byte *src, int height);
-
- void draw8ColWithMasking(byte *dst, byte *src, int height, byte *mask);
- void draw8Col(byte *dst, byte *src, int height);
+ void decodeStripEGA(byte *dst, const byte *src, int height);
+ void decodeStripOldEGA(byte *dst, const byte *src, int height, int stripnr);
+ void decompressMaskImgOld(byte *dst, const byte *src, int stripnr);
+ void unkDecodeA(byte *dst, const byte *src, int height);
+ void unkDecodeA_trans(byte *dst, const byte *src, int height);
+ void unkDecodeB(byte *dst, const byte *src, int height);
+ void unkDecodeB_trans(byte *dst, const byte *src, int height);
+ void unkDecodeC(byte *dst, const byte *src, int height);
+ void unkDecodeC_trans(byte *dst, const byte *src, int height);
+
+ void unkDecode7(byte *dst, const byte *src, int height);
+ void unkDecode8(byte *dst, const byte *src, int height);
+ void unkDecode9(byte *dst, const byte *src, int height);
+ void unkDecode10(byte *dst, const byte *src, int height);
+ void unkDecode11(byte *dst, const byte *src, int height);
+
+ void draw8ColWithMasking(byte *dst, const byte *src, int height, byte *mask);
+ void draw8Col(byte *dst, const byte *src, int height);
void clear8ColWithMasking(byte *dst, int height, byte *mask);
void clear8Col(byte *dst, int height);
- void decompressMaskImgOr(byte *dst, byte *src, int height);
- void decompressMaskImg(byte *dst, byte *src, int height);
+ void decompressMaskImgOr(byte *dst, const byte *src, int height);
+ void decompressMaskImg(byte *dst, const byte *src, int height);
void drawStripToScreen(VirtScreen *vs, int x, int w, int t, int b);
void updateDirtyScreen(VirtScreen *vs);