Esempio n. 1
0
func (m *Mixer) AttachMixer(mixer *Mixer) bool {
	return bool(C.al_attach_mixer_to_mixer((*C.ALLEGRO_MIXER)(unsafe.Pointer(m)), (*C.ALLEGRO_MIXER)(unsafe.Pointer(mixer))))
}
Esempio n. 2
0
File: audio.go Progetto: beoran/algo
// Attaches the given mixer to the latter mixer.
func (stream *Mixer) Attach(mixer *Mixer) bool {
	return cb2b(C.al_attach_mixer_to_mixer(stream.handle, mixer.handle))
}