| 261 | } |
| 262 | |
| 263 | void SoftwareDrawingEngine::renderDirtyRegions() |
| 264 | { |
| 265 | _invalidationGrid.traverseDirtyCells([this](int32_t left, int32_t top, int32_t right, int32_t bottom) { |
| 266 | this->render(Rect::fromLTRB(left, top, right, bottom)); |
| 267 | }); |
| 268 | } |
| 269 | |
| 270 | void SoftwareDrawingEngine::render(const Rect& _rect) |
| 271 | { |
nothing calls this directly
no test coverage detected