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

Added filtering back to FilterNode

parent 9a4f5e9c
Branches
Tags
No related merge requests found
......@@ -90,8 +90,8 @@ void MainWindow::saveWindowBounds()
XmlElement* bounds = new XmlElement("BOUNDS");
bounds->setAttribute("x",getScreenX());
bounds->setAttribute("y",getScreenY());
bounds->setAttribute("w",getWidth());
bounds->setAttribute("h",getHeight());
bounds->setAttribute("w",getContentComponent()->getWidth());
bounds->setAttribute("h",getContentComponent()->getHeight());
bounds->setAttribute("fullscreen",isFullScreen());
xml->addChildElement(bounds);
......
......@@ -208,7 +208,7 @@ void FilterNode::process(AudioSampleBuffer &buffer,
//int nSamps = getNumSamples(midiMessages);
//std::cout << nSamples << std::endl;
//filter->process (nSamples, buffer.getArrayOfChannels());
filter->process (nSamples, buffer.getArrayOfChannels());
//std::cout << "Filter node:" << *buffer.getSampleData(0,0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment