Example #1
0
func (s *SampleInstance) SetLength(val uint32) bool {
	return bool(C.al_set_sample_instance_length((*C.ALLEGRO_SAMPLE_INSTANCE)(unsafe.Pointer(s)), C.uint(val)))
}
Example #2
0
File: audio.go Project: beoran/algo
// Sets the length of the sample instance.
func (self *SampleInstance) SetLength(val uint) bool {
	return cb2b(C.al_set_sample_instance_length(self.handle, C.uint(val)))
}