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)))) }
// 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)) }