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

	d = (*Display)(C.al_get_current_display())

	return d
}
コード例 #2
0
ファイル: display.go プロジェクト: beoran/algo
// Returns the current display
func CurrentDisplay() *Display {
	return wrapDisplayRaw(C.al_get_current_display())
}
コード例 #3
0
ファイル: graphics.go プロジェクト: b1naryth1ef/allegro
func GetCurrentDisplay() *Display {
	return (*Display)(unsafe.Pointer(C.al_get_current_display()))
}