| 194 | } |
| 195 | |
| 196 | void Abyss::Streams::AudioStream::setLoop(const bool loop) { |
| 197 | std::lock_guard lock(_mutex); |
| 198 | |
| 199 | _loop = loop; |
| 200 | } |
| 201 | |
| 202 | bool Abyss::Streams::AudioStream::isLooped() { |
| 203 | std::lock_guard lock(_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected