summaryrefslogtreecommitdiff
path: root/src/blitter/8bpp_base.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
commit09879ea308c600cd5c1a2d69ba70bd4c566710cb (patch)
tree269271622a8d64c7bdf5ea91e2e0e9f553bde1cf /src/blitter/8bpp_base.hpp
parentc31ff284c321be86dcd3e4640f11b4e82a6c7cb4 (diff)
downloadopenttd-09879ea308c600cd5c1a2d69ba70bd4c566710cb.tar.xz
(svn r10203) -Codechange: more moving things to blitter-layer: DrawLine
Diffstat (limited to 'src/blitter/8bpp_base.hpp')
-rw-r--r--src/blitter/8bpp_base.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blitter/8bpp_base.hpp b/src/blitter/8bpp_base.hpp
index 63b28d200..3e93885c7 100644
--- a/src/blitter/8bpp_base.hpp
+++ b/src/blitter/8bpp_base.hpp
@@ -17,6 +17,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);