diff options
author | Sebastian Geerken <devnull@localhost> | 2013-10-22 10:33:03 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-10-22 10:33:03 +0200 |
commit | 10934cb7dbb3eeaa30a9041228cf26c1c790bf5d (patch) | |
tree | b11e3a90642ef171963f0b9e9e60f06183b5a455 /dw/image.cc | |
parent | 385e55080f609bd86dc6d61113810773761e0b09 (diff) |
Extended ImgRenderer; new option (in the code) for drawing background images at once.
Diffstat (limited to 'dw/image.cc')
-rw-r--r-- | dw/image.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dw/image.cc b/dw/image.cc index 1cb9ce39..acb2779e 100644 --- a/dw/image.cc +++ b/dw/image.cc @@ -450,6 +450,16 @@ void Image::drawRow (int row) area.width, area.height); } +void Image::finish () +{ + // Nothing to do; images are always drawn line by line. +} + +void Image::fatal () +{ + // Could display an error. +} + /** * \brief Sets image as server side image map. |