mirror of https://github.com/probonopd/MiniDexed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
449 B
28 lines
449 B
#pragma once
|
|
|
|
#include "extra_features.h"
|
|
|
|
enum StereoChannels : std::size_t
|
|
{
|
|
Left = 0,
|
|
Right,
|
|
kNumChannels
|
|
};
|
|
|
|
enum MixerOutput : std::size_t
|
|
{
|
|
OutputStart = 0,
|
|
FX_Tube = 0,
|
|
FX_Chorus,
|
|
FX_Flanger,
|
|
FX_Orbitone,
|
|
FX_Phaser,
|
|
FX_Delay,
|
|
FX_PlateReverb,
|
|
FX_ShimmerReverb,
|
|
MainOutput,
|
|
kFXCount
|
|
};
|
|
|
|
extern std::string_view toString(MixerOutput enum_val);
|
|
extern MixerOutput toIndex(std::string str);
|
|
|