summaryrefslogtreecommitdiff
path: root/src/blitter/null.hpp
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-06-18 19:38:23 +0000
committertruelight <truelight@openttd.org>2007-06-18 19:38:23 +0000
commitd7736f6b83b9b9c16be1c70ba820caaca00b7cdd (patch)
tree269271622a8d64c7bdf5ea91e2e0e9f553bde1cf /src/blitter/null.hpp
parent704a67ff0ba72314230e2c4b4fb9cab2654edd9d (diff)
downloadopenttd-d7736f6b83b9b9c16be1c70ba820caaca00b7cdd.tar.xz
(svn r10203) -Codechange: more moving things to blitter-layer: DrawLine
Diffstat (limited to 'src/blitter/null.hpp')
-rw-r--r--src/blitter/null.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blitter/null.hpp b/src/blitter/null.hpp
index b3bbe2212..61c4f222d 100644
--- a/src/blitter/null.hpp
+++ b/src/blitter/null.hpp
@@ -18,6 +18,7 @@ public:
/* virtual */ void SetPixel(void *video, int x, int y, uint8 color) {};
/* virtual */ void SetPixelIfEmpty(void *video, int x, int y, uint8 color) {};
/* virtual */ void DrawRect(void *video, int width, int height, uint8 color) {};
+ /* virtual */ void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 color) {};
/* virtual */ void CopyFromBuffer(void *video, const void *src, int width, int height, int src_pitch) {};
/* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height, int dst_pitch) {};
/* virtual */ void MoveBuffer(void *video_dst, const void *video_src, int width, int height) {};