///////////////////////////////////////////////////////
| 61 | |
| 62 | //////////////////////////////////////////////////////////// |
| 63 | void SoundSource::setSpatializationEnabled(bool enabled) |
| 64 | { |
| 65 | if (auto* sound = static_cast<ma_sound*>(getSound())) |
| 66 | ma_sound_set_spatialization_enabled(sound, enabled ? MA_TRUE : MA_FALSE); |
| 67 | } |
| 68 | |
| 69 | |
| 70 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected