func GetTargetBitmap() *Bitmap { var b *Bitmap b = (*Bitmap)(C.al_get_target_bitmap()) return b }
// Gets the target bitmap of allegro drawing func TargetBitmap() *Bitmap { return wrapBitmapRaw(C.al_get_target_bitmap()) }
func GetTargetBitmap() *Bitmap { return (*Bitmap)(unsafe.Pointer(C.al_get_target_bitmap())) }