aboutsummaryrefslogtreecommitdiff
path: root/engines/adl/display.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/adl/display.h')
-rw-r--r--engines/adl/display.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/adl/display.h b/engines/adl/display.h
index 2946a7e94a..bc27b7cb6b 100644
--- a/engines/adl/display.h
+++ b/engines/adl/display.h
@@ -63,8 +63,9 @@ public:
// Graphics
void loadFrameBuffer(Common::ReadStream &stream);
- void putPixelRaw(const Common::Point &p, byte color);
void putPixel(const Common::Point &p, byte color);
+ void setPixelBit(const Common::Point &p, byte color);
+ void setPixelPalette(const Common::Point &p, byte color);
bool getPixelBit(const Common::Point &p) const;
void clear(byte color);
@@ -80,6 +81,7 @@ public:
void showCursor(bool enable);
private:
+ void writeFrameBuffer(const Common::Point &p, byte color, byte mask);
void updateHiResSurface();
void showScanlines(bool enable);