diff --git a/dgl/StandaloneWindow.hpp b/dgl/StandaloneWindow.hpp index 017a3a7d..5b77e58b 100644 --- a/dgl/StandaloneWindow.hpp +++ b/dgl/StandaloneWindow.hpp @@ -73,6 +73,7 @@ public: uint getHeight() const noexcept { return Window::getHeight(); } const Size getSize() const noexcept { return Window::getSize(); } void repaint() noexcept { Window::repaint(); } + void repaint(const Rectangle& rect) noexcept { Window::repaint(rect); } void setWidth(uint width) { Window::setWidth(width); } void setHeight(uint height) { Window::setHeight(height); } void setSize(uint width, uint height) { Window::setSize(width, height); }