Skip to content

Commit

Permalink
x/mobile/exp/audio/al: fix signature of UnqueueBuffers
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLubar committed Oct 26, 2020
1 parent 973feb4 commit 25fec36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exp/audio/al/al.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ func (s Source) QueueBuffers(buffer ...Buffer) {
alSourceQueueBuffers(s, buffer)
}

// UnqueueBuffers removes the specified buffers from the buffer queue.
func (s Source) UnqueueBuffers(buffer ...Buffer) {
// UnqueueBuffers removes completed buffers from the buffer queue.
func (s Source) UnqueueBuffers(buffer []Buffer) {
alSourceUnqueueBuffers(s, buffer)
}

Expand Down

0 comments on commit 25fec36

Please sign in to comment.