コード例 #1
0
ファイル: windowing.go プロジェクト: 21isgonnabeagoodyear/ggl
func ShowCursor(show bool) {
	if show {
		C.SDL_ShowCursor(C.SDL_TRUE)
	} else {
		C.SDL_ShowCursor(C.SDL_FALSE)
	}
}
コード例 #2
0
ファイル: sdl.go プロジェクト: kearsley/Go-SDL
// Toggle whether or not the cursor is shown on the screen.
func ShowCursor(toggle int) int {
	GlobalMutex.Lock()
	state := int(C.SDL_ShowCursor((C.int)(toggle)))
	GlobalMutex.Unlock()
	return state
}
コード例 #3
0
ファイル: sdl.go プロジェクト: gnanderson/Go-SDL
func ShowCursor(toggle int) int {
	return int(C.SDL_ShowCursor(C.int(toggle)))
}
コード例 #4
0
ファイル: input.go プロジェクト: krig/Go-SDL2
// Toggle whether or not the cursor is shown on the screen.
func ShowCursor(toggle int) int {
	state := int(C.SDL_ShowCursor((C.int)(toggle)))
	return state
}
コード例 #5
0
ファイル: sdl_mouse.go プロジェクト: kyleconroy/golds
func ShowCursor(toggle int) int {
	_toggle := (C.int)(toggle)
	return (int)(C.SDL_ShowCursor(_toggle))
}
コード例 #6
0
ファイル: mouse.go プロジェクト: willemvds/sdl
func ShowCursor(t int) bool {
	return C.SDL_ShowCursor(C.int(t)) != 0
}