コード例 #1
0
ファイル: display.go プロジェクト: beoran/algo
// Allows to speed up drawing by holding the display . Only bitmap functions and font
// drawing, as well as tranformations shouldbe done until the hold is released
func HoldBitmapDrawing(hold bool) {
	C.al_hold_bitmap_drawing(b2cb(hold))
}
コード例 #2
0
ファイル: graphics.go プロジェクト: bluepeppers/allegro
func HoldBitmapDrawing(hold bool) {

	C.al_hold_bitmap_drawing(C.bool(hold))

}