Server/Spectrum/ScalingStrategy.cs
author StephaneLenclud
Thu, 05 Jan 2017 14:54:43 +0100
changeset 275 a4a341accc89
permissions -rw-r--r--
Published v1.4.2
Fixing issues with Audio Visualizer bitmaps created when form is not visible.
Now reusing Audio Visualizer bitmap for better performance and memory usage.
StephaneLenclud@273
     1
namespace Visualization
StephaneLenclud@273
     2
{
StephaneLenclud@273
     3
    public enum ScalingStrategy
StephaneLenclud@273
     4
    {
StephaneLenclud@273
     5
        Decibel,
StephaneLenclud@273
     6
        Linear,
StephaneLenclud@273
     7
        Sqrt
StephaneLenclud@273
     8
    }
StephaneLenclud@273
     9
}