| 391 | } |
| 392 | |
| 393 | void GfxDrawLine(int x, int y, int x2, int y2, PixelColour colour, int width, int dash) |
| 394 | { |
| 395 | DrawPixelInfo *dpi = _cur_dpi; |
| 396 | if (GfxPreprocessLine(dpi, x, y, x2, y2, width)) { |
| 397 | GfxDoDrawLine(dpi->dst_ptr, x, y, x2, y2, dpi->width, dpi->height, colour, width, dash); |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | void GfxDrawLineUnscaled(int x, int y, int x2, int y2, PixelColour colour) |
| 402 | { |
no test coverage detected