diff options
author | Chris Robinson <[email protected]> | 2023-03-11 23:03:53 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-03-11 23:03:53 -0800 |
commit | 01521b684998c43a7bd4d062af9858961379fecb (patch) | |
tree | ee634f7dce3d0fa152e9d83329b37cf562389afc /alc/context.h | |
parent | c7da1696a4c15910f6b7240ae7cbfc44114bef06 (diff) |
Don't change the context's EAX version on every set/get call
Diffstat (limited to 'alc/context.h')
-rw-r--r-- | alc/context.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/alc/context.h b/alc/context.h index d93d63d6..c0f1805c 100644 --- a/alc/context.h +++ b/alc/context.h @@ -187,7 +187,6 @@ public: public: bool has_eax() const noexcept { return eax_is_initialized_; } bool eax_is_capable() const noexcept; - int eax_get_version() const noexcept { return eax_version_; } void eax_uninitialize() noexcept; @@ -475,9 +474,6 @@ private: static void eax4_context_set_defaults(Eax4State& state) noexcept; static void eax5_context_set_defaults(Eax5Props& props) noexcept; static void eax5_context_set_defaults(Eax5State& state) noexcept; - void eax4_context_set_current_defaults(const Eax4Props& props) noexcept; - void eax5_context_set_current_defaults(const Eax5Props& props) noexcept; - void eax_context_set_current_defaults(); void eax_context_set_defaults(); void eax_set_defaults(); |