| 321 | } |
| 322 | |
| 323 | ddgr_color grViewport::getpixelc(int x, int y) { |
| 324 | ASSERT(vp_Locked); |
| 325 | |
| 326 | if (x < CLIP_LEFT || x > CLIP_RIGHT || y < CLIP_TOP || y > CLIP_BOTTOM) |
| 327 | return 0; |
| 328 | |
| 329 | return rend_GetPixel(x, y); |
| 330 | } |
| 331 | |
| 332 | void grViewport::lock_clear(ddgr_color col) { |
| 333 | int l = CLIP_LEFT, t = CLIP_TOP, r = CLIP_RIGHT, b = CLIP_BOTTOM; |
nothing calls this directly
no test coverage detected