| 441 | #endif |
| 442 | |
| 443 | void Window::repaint() noexcept |
| 444 | { |
| 445 | if (pData->view == nullptr) |
| 446 | return; |
| 447 | |
| 448 | if (pData->usesScheduledRepaints) |
| 449 | pData->appData->needsRepaint = true; |
| 450 | |
| 451 | puglObscureView(pData->view); |
| 452 | } |
| 453 | |
| 454 | void Window::repaint(const Rectangle<uint>& rect) noexcept |
| 455 | { |
no test coverage detected