aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/animate.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-01-31 12:35:15 +0000
committerMartin Kiewitz2010-01-31 12:35:15 +0000
commit7929255cd9723ebba451d5b9dd4d4597ed32e6a7 (patch)
tree8cd2c05a2e023aa0d8e56eec338c06690888cddc /engines/sci/graphics/animate.h
parent5278b82f33dd1083b99470bb8dcf941debb6b446 (diff)
downloadscummvm-rg350-7929255cd9723ebba451d5b9dd4d4597ed32e6a7.tar.gz
scummvm-rg350-7929255cd9723ebba451d5b9dd4d4597ed32e6a7.tar.bz2
scummvm-rg350-7929255cd9723ebba451d5b9dd4d4597ed32e6a7.zip
SCI: cleaned up graphics classes, removed gfx&windowmgr, added gfxports, gfxcompare, gfxpaint16, gfxcache. kernel uses gfxports directly w/o going through SciGui
svn-id: r47745
Diffstat (limited to 'engines/sci/graphics/animate.h')
-rw-r--r--engines/sci/graphics/animate.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/engines/sci/graphics/animate.h b/engines/sci/graphics/animate.h
index db09342d4b..8dae1a6d46 100644
--- a/engines/sci/graphics/animate.h
+++ b/engines/sci/graphics/animate.h
@@ -56,13 +56,15 @@ enum ViewScaleSignals {
kScaleSignalUnknown2 = 0x0004 // really unknown
};
-class Gfx;
+class GfxCache;
+class GfxPorts;
+class GfxPaint16;
class Screen;
class SciPalette;
class Transitions;
class SciGuiAnimate {
public:
- SciGuiAnimate(EngineState *state, Gfx *gfx, Screen *screen, SciPalette *palette);
+ SciGuiAnimate(EngineState *state, GfxCache *cache, GfxPorts *ports, GfxPaint16 *paint16, Screen *screen, SciPalette *palette);
~SciGuiAnimate();
// FIXME: Don't store EngineState
@@ -86,7 +88,9 @@ private:
void init();
EngineState *_s;
- Gfx *_gfx;
+ GfxCache *_cache;
+ GfxPorts *_ports;
+ GfxPaint16 *_paint16;
Screen *_screen;
SciPalette *_palette;