作者:21isgonnabeagoodyea
项目:gg
func ShowCursor(show bool) {
if show {
C.SDL_ShowCursor(C.SDL_TRUE)
} else {
C.SDL_ShowCursor(C.SDL_FALSE)
}
}
作者:kearsle
项目:Go-SD
// 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
}
作者:gnanderso
项目:Go-SD
func ShowCursor(toggle int) int {
return int(C.SDL_ShowCursor(C.int(toggle)))
}
作者:kri
项目:Go-SDL
// 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
}
作者:kyleconro
项目:gold
func ShowCursor(toggle int) int {
_toggle := (C.int)(toggle)
return (int)(C.SDL_ShowCursor(_toggle))
}
作者:willemvd
项目:sd
func ShowCursor(t int) bool {
return C.SDL_ShowCursor(C.int(t)) != 0
}