MCPcopy Create free account
hub / github.com/DISTRHO/DPF / repaintIfNeeeded

Method repaintIfNeeeded

dgl/src/ApplicationPrivateData.cpp:141–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141void Application::PrivateData::repaintIfNeeeded()
142{
143 if (needsRepaint)
144 {
145 needsRepaint = false;
146
147 for (WindowListIterator it = windows.begin(), ite = windows.end(); it != ite; ++it)
148 {
149 DGL_NAMESPACE::Window* const window(*it);
150 window->repaint();
151 }
152 }
153}
154
155void Application::PrivateData::quit()
156{

Callers 4

repaintIfNeeededFunction · 0.80
exec_idleFunction · 0.80
plugin_idleFunction · 0.80
idleFromNativeIdleFunction · 0.80

Calls 1

repaintMethod · 0.45

Tested by

no test coverage detected