示例#1
0
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())
}