Beispiel #1
0
func (b *Bitmap) IsSubBitmap() bool {
	var v bool

	v = bool(C.al_is_sub_bitmap((*C.ALLEGRO_BITMAP)(b)))

	return v
}
Beispiel #2
0
// Returns whether or not the bitmap is a sub bitmap
func (self *Bitmap) IsSubBitmap() bool {
	return cb2b(C.al_is_sub_bitmap(self.handle))
}
Beispiel #3
0
func (b *Bitmap) IsSub() bool {
	return bool(C.al_is_sub_bitmap((*C.ALLEGRO_BITMAP)(unsafe.Pointer(b))))
}