コード例 #1
0
ファイル: graphics.go プロジェクト: bluepeppers/allegro
func (b *Bitmap) GetDimensions() (int, int) {
	ptr := (*C.ALLEGRO_BITMAP)(b)
	var w, h C.int

	w = C.al_get_bitmap_width(ptr)
	h = C.al_get_bitmap_height(ptr)

	return int(w), int(h)
}
コード例 #2
0
ファイル: bitmap.go プロジェクト: beoran/algo
// Gets the height of the bitmap.
func (self *Bitmap) Height() int {
	return int(C.al_get_bitmap_height(self.handle))
}
コード例 #3
0
ファイル: graphics.go プロジェクト: b1naryth1ef/allegro
func (b *Bitmap) GetHeight() int32 {
	return int32(C.al_get_bitmap_height((*C.ALLEGRO_BITMAP)(unsafe.Pointer(b))))
}