Esempio n. 1
0
func GetTargetBitmap() *Bitmap {
	var b *Bitmap

	b = (*Bitmap)(C.al_get_target_bitmap())

	return b
}
Esempio n. 2
0
// Gets the target bitmap of allegro drawing
func TargetBitmap() *Bitmap {
	return wrapBitmapRaw(C.al_get_target_bitmap())
}
Esempio n. 3
0
func GetTargetBitmap() *Bitmap {
	return (*Bitmap)(unsafe.Pointer(C.al_get_target_bitmap()))
}