fastdraw interface
| 258 | |
| 259 | // fastdraw interface |
| 260 | void Graphics::FastLineBatchStart(const RectI& clip, bool aa) |
| 261 | { |
| 262 | #ifdef _DEBUG |
| 263 | if (!Rect{ {}, dims }.Contains(clip)) |
| 264 | { |
| 265 | pmlog_warn("scissor rect outside window"); |
| 266 | } |
| 267 | #endif |
| 268 | fastRenderer->StartLineBatch(clip, aa); |
| 269 | } |
| 270 | |
| 271 | void Graphics::FastTriangleBatchStart(const RectI& clip) |
| 272 | { |
no test coverage detected