func (b *Bitmap) IsCompatible() bool { var v bool v = bool(C.al_is_compatible_bitmap((*C.ALLEGRO_BITMAP)(b))) return v }
// Returns true of the bitmap is compatible with the currebt display, false if not. func (bitmap *Bitmap) IsCompatibleBitmap() bool { return cb2b(C.al_is_compatible_bitmap(bitmap.handle)) }
func (b *Bitmap) IsCompatible() bool { return bool(C.al_is_compatible_bitmap((*C.ALLEGRO_BITMAP)(unsafe.Pointer(b)))) }