aboutsummaryrefslogtreecommitdiff
path: root/graphics/surface.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/surface.h')
-rw-r--r--graphics/surface.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/surface.h b/graphics/surface.h
index 8407b73bbe..ce3596b364 100644
--- a/graphics/surface.h
+++ b/graphics/surface.h
@@ -46,7 +46,8 @@ struct Surface {
inline void *getBasePtr(int x, int y) {
return static_cast<void *>(static_cast<byte *>(pixels) + y * pitch + x * bytesPerPixel);
}
-
+
+ void drawLine(int x0, int y0, int x1, int y1, uint32 color);
void hLine(int x, int y, int x2, uint32 color);
void vLine(int x, int y, int y2, uint32 color);
void fillRect(const Common::Rect &r, uint32 color);