| 543 | } |
| 544 | |
| 545 | void GfxRenderer::drawRect(const int x, const int y, const int width, const int height, const bool state) const { |
| 546 | drawLine(x, y, x + width - 1, y, state); |
| 547 | drawLine(x + width - 1, y, x + width - 1, y + height - 1, state); |
| 548 | drawLine(x + width - 1, y + height - 1, x, y + height - 1, state); |
| 549 | drawLine(x, y, x, y + height - 1, state); |
| 550 | } |
| 551 | |
| 552 | // Border is inside the rectangle |
| 553 | void GfxRenderer::drawRect(const int x, const int y, const int width, const int height, const int lineWidth, |
no outgoing calls
no test coverage detected