FastLED 3.9.15
Loading...
Searching...
No Matches

◆ setFFTHistoryDepth()

void fl::audio::Context::setFFTHistoryDepth ( int depth)

Definition at line 111 of file audio_context.cpp.hpp.

111 {
112 if (mFFTHistoryDepth != depth) {
113 mFFTHistory.clear();
114 mFFTHistory.reserve(depth);
115 mFFTHistoryDepth = depth;
117 }
118}
vector< fft::Bins > mFFTHistory

References mFFTHistory, mFFTHistoryDepth, and mFFTHistoryIndex.