==============================================================================
| 25 | |
| 26 | //============================================================================== |
| 27 | SpectrumBackground::SpectrumBackground() : numberOfBins(1024), mBinWidth(44100 / (float) 2048) |
| 28 | { |
| 29 | // Initialize with a placeholder image. |
| 30 | cachedBackground = juce::Image(juce::Image::PixelFormat::ARGB, 1, 1, true); |
| 31 | } |
| 32 | |
| 33 | SpectrumBackground::~SpectrumBackground() |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected