MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / forceFullComputationOnNextFrame

Method forceFullComputationOnNextFrame

Engine/ViewerInstance.cpp:220–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220void
221ViewerInstance::forceFullComputationOnNextFrame()
222{
223 // this is called by the GUI when the user presses the "Refresh" button.
224 // It set the flag forceRender to true, meaning no cache will be used.
225
226 // always running in the main thread
227 assert( qApp && qApp->thread() == QThread::currentThread() );
228
229 QMutexLocker forceRenderLocker(&_imp->forceRenderMutex);
230 _imp->forceRender[0] = _imp->forceRender[1] = true;
231}
232
233void
234ViewerInstance::clearLastRenderedImage()

Callers 1

refreshMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected