コード例 #1
0
ファイル: graphics.go プロジェクト: bluepeppers/allegro
func IsBitmapDrawingHeld() bool {
	var b bool

	b = bool(C.al_is_bitmap_drawing_held())

	return b
}
コード例 #2
0
ファイル: display.go プロジェクト: beoran/algo
// Returns whether or not the bitmap drawing was held
func IsBitmapDrawingHeld() bool {
	return cb2b(C.al_is_bitmap_drawing_held())
}