aboutsummaryrefslogtreecommitdiff
path: root/graphics/primitives.h
diff options
context:
space:
mode:
authorEugene Sandulenko2007-11-25 13:33:28 +0000
committerEugene Sandulenko2007-11-25 13:33:28 +0000
commit7844ad6f2c5499a1dfd9430cd57686ed36d908c9 (patch)
treeb278b727611302c700069833fadff382013fcd72 /graphics/primitives.h
parent8151e1672f461f12467dd3b821ce32965a72159a (diff)
downloadscummvm-rg350-7844ad6f2c5499a1dfd9430cd57686ed36d908c9.tar.gz
scummvm-rg350-7844ad6f2c5499a1dfd9430cd57686ed36d908c9.tar.bz2
scummvm-rg350-7844ad6f2c5499a1dfd9430cd57686ed36d908c9.zip
An attempt to implement thick line drawing.
svn-id: r29639
Diffstat (limited to 'graphics/primitives.h')
-rw-r--r--graphics/primitives.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/primitives.h b/graphics/primitives.h
index 2bc44d6644..0c96c1545a 100644
--- a/graphics/primitives.h
+++ b/graphics/primitives.h
@@ -28,6 +28,7 @@
namespace Graphics {
void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
+void drawThickLine(int x0, int y0, int x1, int y1, int thickness, int color, void (*plotProc)(int, int, int, void *), void *data);
} // End of namespace Graphics