| 182 | } |
| 183 | |
| 184 | void grViewport::fillcircle(ddgr_color col, int xc, int yc, int r) { |
| 185 | ASSERT(vp_Locked); |
| 186 | |
| 187 | xc = global_x(xc); |
| 188 | yc = global_y(yc); |
| 189 | |
| 190 | rend_FillCircle(col, xc, yc, r); |
| 191 | } |
nothing calls this directly
no test coverage detected