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