Ejemplo n.º 1
0
func (b *Bitmap) IsCompatible() bool {
	var v bool

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

	return v
}
Ejemplo n.º 2
0
// 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))
}
Ejemplo n.º 3
0
func (b *Bitmap) IsCompatible() bool {
	return bool(C.al_is_compatible_bitmap((*C.ALLEGRO_BITMAP)(unsafe.Pointer(b))))
}