We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 973feb4 commit a4eeaa4Copy full SHA for a4eeaa4
exp/audio/al/al.go
@@ -334,9 +334,9 @@ func (s Source) QueueBuffers(buffer ...Buffer) {
334
alSourceQueueBuffers(s, buffer)
335
}
336
337
-// UnqueueBuffers removes the specified buffers from the buffer queue.
338
-func (s Source) UnqueueBuffers(buffer ...Buffer) {
339
- alSourceUnqueueBuffers(s, buffer)
+// UnqueueBuffers removes completed buffers from the buffer queue.
+func (s Source) UnqueueBuffers(buffer []Buffer) {
+ alSourceUnqueueBuffers(s, buffers)
340
341
342
// ListenerGain returns the total gain applied to the final mix.
0 commit comments