diff options
Diffstat (limited to 'al/source.h')
-rw-r--r-- | al/source.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/al/source.h b/al/source.h index 4f409288..a89a8297 100644 --- a/al/source.h +++ b/al/source.h @@ -220,9 +220,11 @@ public: void eax_update( EaxContextSharedDirtyFlags dirty_flags); - void eax_commit(); + void eax_commit() { eax_apply_deferred(); } void eax_commit_and_update(); + bool eax_is_initialized() const noexcept { return eax_al_context_; } + static ALsource* eax_lookup_source( ALCcontext& al_context, @@ -268,8 +270,6 @@ private: const char* message); - bool eax_is_initialized() const noexcept { return eax_al_context_; } - void eax_set_source_defaults() noexcept; void eax_set_active_fx_slots_defaults() noexcept; void eax_set_send_defaults(EAXSOURCEALLSENDPROPERTIES& eax_send) noexcept; |