diff options
Diffstat (limited to 'alc')
-rw-r--r-- | alc/context.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/alc/context.cpp b/alc/context.cpp index b1b95321..32bd36eb 100644 --- a/alc/context.cpp +++ b/alc/context.cpp @@ -487,7 +487,6 @@ void ALCcontext::eax_initialize() eax_context_commit_air_absorbtion_hf(); eax_update_speaker_configuration(); eax_initialize_fx_slots(); - eax_initialize_sources(); eax_is_initialized_ = true; mPropsDirty = true; @@ -806,14 +805,6 @@ void ALCcontext::eax_initialize_fx_slots() eax_primary_fx_slot_index_ = eax_.guidPrimaryFXSlotID; } -void ALCcontext::eax_initialize_sources() -{ - std::unique_lock<std::mutex> source_lock{mSourceLock}; - auto init_source = [this](ALsource &source) noexcept - { source.eax_initialize(this); }; - ForEachSource(this, init_source); -} - void ALCcontext::eax_update_sources() { std::unique_lock<std::mutex> source_lock{mSourceLock}; |