diff options
Diffstat (limited to 'core/context.h')
-rw-r--r-- | core/context.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/context.h b/core/context.h index f5768629..d2e6b546 100644 --- a/core/context.h +++ b/core/context.h @@ -163,6 +163,13 @@ struct ContextBase { al::vector<VoicePropsCluster> mVoicePropClusters; + static constexpr size_t EffectSlotClusterSize{4}; + EffectSlot *getEffectSlot(); + + using EffectSlotCluster = std::unique_ptr<EffectSlot[]>; + al::vector<EffectSlotCluster> mEffectSlotClusters; + + ContextBase(DeviceBase *device); ContextBase(const ContextBase&) = delete; ContextBase& operator=(const ContextBase&) = delete; |