| 306 | } |
| 307 | |
| 308 | void grViewport::setpixelc(ddgr_color col, int x, int y) { |
| 309 | ASSERT(vp_Locked); |
| 310 | |
| 311 | if (x < CLIP_LEFT || x > CLIP_RIGHT || y < CLIP_TOP || y > CLIP_BOTTOM) |
| 312 | return; |
| 313 | |
| 314 | rend_SetPixel(col, x, y); |
| 315 | } |
| 316 | |
| 317 | ddgr_color grViewport::getpixel(int x, int y) { |
| 318 | ASSERT(vp_Locked); |
nothing calls this directly
no test coverage detected