| 161 | } |
| 162 | |
| 163 | void grViewport::fillrect(ddgr_color color, int l, int t, int r, int b) { |
| 164 | ASSERT(vp_Locked); |
| 165 | |
| 166 | l = global_x(l); |
| 167 | t = global_y(t); |
| 168 | r = global_x(r); |
| 169 | b = global_y(b); |
| 170 | |
| 171 | rend_FillRect(color, l, t, r, b); |
| 172 | } |
| 173 | |
| 174 | void grViewport::circle(ddgr_color col, int xc, int yc, int r) { |
| 175 | ASSERT(vp_Locked); |
nothing calls this directly
no test coverage detected