| 36 | } |
| 37 | |
| 38 | StepSequencer::StepSequencer() |
| 39 | : mFlusher(this) |
| 40 | { |
| 41 | mFlusher.SetInterval(mStepInterval); |
| 42 | |
| 43 | mMetaStepMasks = new juce::uint32[META_STEP_MAX * NUM_STEPSEQ_ROWS]; |
| 44 | for (int i = 0; i < META_STEP_MAX * NUM_STEPSEQ_ROWS; ++i) |
| 45 | mMetaStepMasks[i] = 0xff; |
| 46 | |
| 47 | mStrength = gStepVelocityLevels[(int)StepVelocityType::Normal]; |
| 48 | } |
| 49 | |
| 50 | void StepSequencer::Init() |
| 51 | { |
nothing calls this directly
no test coverage detected