aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.h
diff options
context:
space:
mode:
authorMax Horn2005-03-25 01:27:28 +0000
committerMax Horn2005-03-25 01:27:28 +0000
commitc86b18716b2bbc1b420e4811ba714e83b0c997bc (patch)
tree73f458379647d7f63879bb1b2460a31020364e22 /scumm/gfx.h
parent7ed1c19f6c46d46cd0fae4a505887675e8338e49 (diff)
downloadscummvm-rg350-c86b18716b2bbc1b420e4811ba714e83b0c997bc.tar.gz
scummvm-rg350-c86b18716b2bbc1b420e4811ba714e83b0c997bc.tar.bz2
scummvm-rg350-c86b18716b2bbc1b420e4811ba714e83b0c997bc.zip
Started some cleanup work on class Gdi (in particular, I try to limit that class to GFX decoding only, and moved the screen rendering code out of it)
svn-id: r17225
Diffstat (limited to 'scumm/gfx.h')
-rw-r--r--scumm/gfx.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/scumm/gfx.h b/scumm/gfx.h
index 6d031545dd..c1e70c005d 100644
--- a/scumm/gfx.h
+++ b/scumm/gfx.h
@@ -211,12 +211,7 @@ public:
Gdi(ScummEngine *vm);
- Graphics::Surface _textSurface;
-
protected:
- byte *_compositeBuf;
- byte *_herculesBuf;
-
byte *_roomPalette;
byte _decomp_shr, _decomp_mask;
byte _transparentColor;
@@ -269,8 +264,6 @@ protected:
void decompressMaskImg(byte *dst, const byte *src, int height) const;
/* Misc */
- void drawStripToScreen(VirtScreen *vs, int x, int w, int t, int b);
- void updateDirtyScreen(VirtScreen *vs);
void ditherCGA(byte *dst, int dstPitch, int x, int y, int width, int height) const;
void ditherHerc(byte *src, byte *hercbuf, int srcPitch, int *x, int *y, int *width, int *height) const;