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

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

	return b
}
예제 #2
0
파일: display.go 프로젝트: beoran/algo
// Gets the target bitmap of allegro drawing
func TargetBitmap() *Bitmap {
	return wrapBitmapRaw(C.al_get_target_bitmap())
}
예제 #3
0
func GetTargetBitmap() *Bitmap {
	return (*Bitmap)(unsafe.Pointer(C.al_get_target_bitmap()))
}