| 357 | } |
| 358 | |
| 359 | Vector3 position() |
| 360 | { |
| 361 | ALfloat pos[3]; |
| 362 | AL_CHECK(alGetSourcefv(_source, AL_POSITION, pos)); |
| 363 | return { pos[0], pos[1], pos[2] }; |
| 364 | } |
| 365 | |
| 366 | void set_position(const Vector3 &pos) |
| 367 | { |
no outgoing calls
no test coverage detected