| 93 | } |
| 94 | |
| 95 | void HyperImage::fill(const ColorRgb& color) |
| 96 | { |
| 97 | _surface.fastBox(0, 0, width() - 1, height() - 1, color.red, color.green, color.blue); |
| 98 | } |
| 99 | |
| 100 | void HyperImage::fillRect(int ax, int ay, int bx, int by, const ColorRgb& color) |
| 101 | { |
no test coverage detected