Skip to content
Snippets Groups Projects
Commit fde7a1f0 authored by jsiegle's avatar jsiegle
Browse files

Clean up ProcessorGraph.cpp

parent 76222267
No related branches found
No related tags found
No related merge requests found
......@@ -123,9 +123,7 @@ void ProcessorGraph::updatePointers()
getRecordNode()->setUIComponent(getUIComponent());
}
void* ProcessorGraph::createNewProcessor(String& description)//,
// GenericProcessor* source,
// GenericProcessor* dest)
void* ProcessorGraph::createNewProcessor(String& description)
{
GenericProcessor* processor = createProcessorFromDescription(description);
......@@ -744,10 +742,6 @@ bool ProcessorGraph::disableProcessors()
void ProcessorGraph::setRecordState(bool isRecording)
{
// const MessageManagerLock mmLock; // lock the message manager to prevent rendering crashes
// inform other processors that recording will begin
// actually start recording
if (isRecording)
{
......@@ -790,16 +784,4 @@ RecordNode* ProcessorGraph::getRecordNode()
Node* node = getNodeForId(RECORD_NODE_ID);
return (RecordNode*) node->getProcessor();
}
// void ProcessorGraph::saveState()
// {
// File file = File("./savedState.xml");
// getEditorViewport()->saveState(file);
// }
// void ProcessorGraph::loadState()
// {
// File file = File("./savedState.xml");
// getEditorViewport()->loadState(file);
// }
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment