aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pegasus/graphics.h')
-rw-r--r--engines/pegasus/graphics.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/pegasus/graphics.h b/engines/pegasus/graphics.h
index d8919e5b5c..d4f9628fa1 100644
--- a/engines/pegasus/graphics.h
+++ b/engines/pegasus/graphics.h
@@ -66,6 +66,9 @@ public:
void invalRect(const Common::Rect &rect);
tDisplayOrder getBackOfActiveLayer() const { return _backLayer; }
tDisplayOrder getFrontOfActiveLayer() const { return _frontLayer; }
+ void updateDisplay();
+ Graphics::Surface *getWorkArea() { return &_workArea; }
+
private:
PegasusEngine *_vm;
@@ -79,6 +82,7 @@ private:
Common::Rect _dirtyRect;
tDisplayOrder _backLayer, _frontLayer;
DisplayElement *_firstDisplayElement, *_lastDisplayElement;
+ Graphics::Surface _workArea;
};
} // End of namespace Pegasus