diff options
author | Martin Kiewitz | 2010-01-31 17:14:58 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-31 17:14:58 +0000 |
commit | 66c88b98f54fb750bebb038ef92636bcc906db55 (patch) | |
tree | 453adae0cbd2ff6c76ccd98e61e34f14318ee42a /engines/sci/graphics/gui32.h | |
parent | 6a3308150fd401b25cb2cab1c8c494fbf3af1a12 (diff) | |
download | scummvm-rg350-66c88b98f54fb750bebb038ef92636bcc906db55.tar.gz scummvm-rg350-66c88b98f54fb750bebb038ef92636bcc906db55.tar.bz2 scummvm-rg350-66c88b98f54fb750bebb038ef92636bcc906db55.zip |
SCI: GfxCache is now also called directly w/o SciGui nor SciGui32
svn-id: r47759
Diffstat (limited to 'engines/sci/graphics/gui32.h')
-rw-r--r-- | engines/sci/graphics/gui32.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/engines/sci/graphics/gui32.h b/engines/sci/graphics/gui32.h index 1484af4219..1092cb9508 100644 --- a/engines/sci/graphics/gui32.h +++ b/engines/sci/graphics/gui32.h @@ -39,7 +39,7 @@ class Text; class SciGui32 { public: - SciGui32(EngineState *s, GfxScreen *screen, GfxPalette *palette, Cursor *cursor); + SciGui32(EngineState *s, GfxScreen *screen, GfxPalette *palette, GfxCache *cache, Cursor *cursor); ~SciGui32(); void init(); @@ -64,12 +64,6 @@ public: void moveCursor(Common::Point pos); void setCursorZone(Common::Rect zone); - int16 getCelWidth(GuiResourceId viewId, int16 loopNo, int16 celNo); - int16 getCelHeight(GuiResourceId viewId, int16 loopNo, int16 celNo); - - int16 getLoopCount(GuiResourceId viewId); - int16 getCelCount(GuiResourceId viewId, int16 loopNo); - void syncWithFramebuffer(); void addScreenItem(reg_t object); |