| 964 | } |
| 965 | |
| 966 | void IDrawableModule::ComputeSliders(int samplesIn) |
| 967 | { |
| 968 | //mSliderMutex.lock(); TODO(Ryan) mutex acquisition is slow, how can I do this faster? |
| 969 | for (int i = 0; i < mFloatSliders.size(); ++i) |
| 970 | mFloatSliders[i]->Compute(samplesIn); |
| 971 | //mSliderMutex.unlock(); |
| 972 | } |
| 973 | |
| 974 | PatchCableOld IDrawableModule::GetPatchCableOld(IClickable* target) |
| 975 | { |
no test coverage detected