Mercurial > hg > svcore
diff transform/ModelTransformerFactory.cpp @ 408:115f60df1e4d
* Speed up spectrogram painting by releasing mutex in FFTDataServer
while calculating data prior to writing it, and by adding whole-column
value query methods to FFT objects
* Add paint cache to Thumbwheel -- repaints of this widget were slowing
down the whole spectrogram repaint
* More uses of MutexLocker (named and with debug) and more profile
points
* Make startup much quicker some of the time, with OSC server in place
author | Chris Cannam |
---|---|
date | Thu, 08 May 2008 14:46:22 +0000 |
parents | a1b6d2e33cab |
children | cff476cfce77 |
line wrap: on
line diff
--- a/transform/ModelTransformerFactory.cpp Tue Apr 29 15:34:17 2008 +0000 +++ b/transform/ModelTransformerFactory.cpp Thu May 08 14:46:22 2008 +0000 @@ -361,6 +361,8 @@ const ModelTransformer::Input &input, QString &message) { + std::cerr << "ModelTransformerFactory::transform: Constructing transformer with input model " << input.getModel() << std::endl; + ModelTransformer *t = createTransformer(transform, input); if (!t) return 0;