| 94 | { return m_atomics.size.load(std::memory_order_relaxed); } |
| 95 | |
| 96 | void ClientReverb::setDecayS(float s) noexcept |
| 97 | { |
| 98 | m_atomics.decayS.store(std::clamp(s, 0.3f, 5.0f), |
| 99 | std::memory_order_relaxed); |
| 100 | m_atomics.version.fetch_add(1, std::memory_order_release); |
| 101 | } |
| 102 | float ClientReverb::decayS() const noexcept |
| 103 | { return m_atomics.decayS.load(std::memory_order_relaxed); } |
| 104 |
no outgoing calls