Beispiel #1
0
func GetTargetBitmap() *Bitmap {
	var b *Bitmap

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

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