--------------------------------------------------------------------
| 166 | |
| 167 | //-------------------------------------------------------------------- |
| 168 | void clear(const color_type& c) |
| 169 | { |
| 170 | unsigned y; |
| 171 | if (width()) |
| 172 | { |
| 173 | for (y = 0; y < height(); y++) |
| 174 | { |
| 175 | m_ren->copy_hline(0, y, width(), c); |
| 176 | } |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | //-------------------------------------------------------------------- |
| 181 | void fill(const color_type& c) |
nothing calls this directly
no test coverage detected