MCPcopy Create free account
hub / github.com/MrKepzie/Natron / clearPersistentMessage

Method clearPersistentMessage

Engine/Node.cpp:7536–7553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7534}
7535
7536void
7537Node::clearPersistentMessage(bool recurse)
7538{
7539 AppInstPtr app = getApp();
7540
7541 if (!app) {
7542 return;
7543 }
7544 if ( app->isBackground() ) {
7545 return;
7546 }
7547 if (recurse) {
7548 std::list<Node*> markedNodes;
7549 clearPersistentMessageRecursive(markedNodes);
7550 } else {
7551 clearPersistentMessageInternal();
7552 }
7553}
7554
7555void
7556Node::purgeAllInstancesCaches()

Callers 4

reloadFileMethod · 0.45
rewriteFileMethod · 0.45
refreshOutputNodeMethod · 0.45
getRotoContextMethod · 0.45

Calls 2

getAppFunction · 0.85
isBackgroundMethod · 0.45

Tested by

no test coverage detected