(source uint32, buffers ...uint32)
| 774 | } |
| 775 | |
| 776 | func SourceQueueBuffers(source uint32, buffers ...uint32) { |
| 777 | |
| 778 | C.alSourceQueueBuffers(C.ALuint(source), C.ALsizei(len(buffers)), (*C.ALuint)(unsafe.Pointer(&buffers[0]))) |
| 779 | } |
| 780 | |
| 781 | func SourceUnqueueBuffers(source uint32, n uint32, buffers []uint32) { |
| 782 |