aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 460452d630..3679f8f345 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -257,7 +257,6 @@ void Picture::setAOIDs() {
_memoryObject2->_rows[i] = ptr;
ptr += pitch;
}
- warning("STUB: Picture::setAOIDs()");
}
void Picture::init() {
@@ -281,6 +280,13 @@ void Picture::getDibInfo() {
_bitmap->pixels = _data;
}
+Bitmap *Picture::getPixelData() {
+ if (!_bitmap)
+ init();
+
+ return _bitmap;
+}
+
BigPicture::BigPicture() {
}