(svn r22291) -Add: a linewidth argument to GfxDrawLine() and Blitter::DrawLine().

This commit is contained in:
frosch
2011-04-02 16:39:30 +00:00
parent 7659575cfa
commit b18211bb9d
4 changed files with 78 additions and 25 deletions

View File

@@ -101,7 +101,7 @@ public:
*/
virtual void DrawRect(void *video, int width, int height, uint8 colour) = 0;
void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 colour);
void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 colour, int width);
/**
* Copy from a buffer to the screen.