aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-08-15 11:14:44 +0300
committerEugene Sandulenko2013-09-06 14:51:15 +0300
commit2167968d21d4a94d6077204f28e6d188ccaa9d5d (patch)
treefdf1562236ba7ca7bc14c3602e3da45f4a233175 /engines/fullpipe/gfx.cpp
parent9f52e9f65068e136680e5fbd4a55eb4ff69720c2 (diff)
downloadscummvm-rg350-2167968d21d4a94d6077204f28e6d188ccaa9d5d.tar.gz
scummvm-rg350-2167968d21d4a94d6077204f28e6d188ccaa9d5d.tar.bz2
scummvm-rg350-2167968d21d4a94d6077204f28e6d188ccaa9d5d.zip
FULLPIPE: Implement Movement::draw()
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index df48a1cb7d..e5cbac31ac 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -798,6 +798,24 @@ Bitmap *Bitmap::reverseImage() {
return this;
}
+Bitmap *Bitmap::flipVertical() {
+ warning("STUB: Bitmap::flipVertical()");
+
+ return this;
+}
+
+ void Bitmap::drawShaded(int type, int x, int y, byte *palette) {
+ warning("STUB: Bitmap::drawShaded(%d, %d, %d)", type, x, y);
+
+ putDib(x, y, (int32 *)palette);
+}
+
+ void Bitmap::drawRotated(int x, int y, int angle, byte *palette) {
+ warning("STUB: Bitmap::drawShaded(%d, %d, %d)", x, y, angle);
+
+ putDib(x, y, (int32 *)palette);
+}
+
bool BigPicture::load(MfcArchive &file) {
debug(5, "BigPicture::load()");
Picture::load(file);