| 269 | } |
| 270 | |
| 271 | void Graphics::FastTriangleBatchStart(const RectI& clip) |
| 272 | { |
| 273 | #ifdef _DEBUG |
| 274 | if (!Rect{ {}, dims }.Contains(clip)) |
| 275 | { |
| 276 | pmlog_warn("scissor rect outside window"); |
| 277 | } |
| 278 | #endif |
| 279 | fastRenderer->StartTriangleBatch(clip); |
| 280 | } |
| 281 | |
| 282 | void Graphics::FastBatchEnd() |
| 283 | { |
no test coverage detected