예제 #1
0
파일: sdl.go 프로젝트: kearsley/Go-SDL
// Gets the name of an SDL virtual keysym
func GetKeyName(key Key) string {
	GlobalMutex.Lock()
	name := C.GoString(C.SDL_GetKeyName(C.SDLKey(key)))
	GlobalMutex.Unlock()
	return name
}
예제 #2
0
파일: sdl.go 프로젝트: gnanderson/Go-SDL
// Gets the name of an SDL virtual keysym
func GetKeyName(key Key) string { return C.GoString(C.SDL_GetKeyName(C.SDLKey(key))) }
예제 #3
0
파일: input.go 프로젝트: krig/Go-SDL2
// Gets the name of an SDL virtual keysym
func GetKeyName(key int32) string {
	name := C.GoString(C.SDL_GetKeyName(C.SDL_Keycode(key)))
	return name
}
예제 #4
0
func GetKeyName(key Keycode) string {
	_key := (C.SDL_Keycode)(key)
	return (C.GoString)(C.SDL_GetKeyName(_key))
}
예제 #5
0
파일: keyboard.go 프로젝트: willemvds/sdl
func (k Keycode) GetName() string {
	return C.GoString(C.SDL_GetKeyName(k.c()))
}
예제 #6
0
func GetKeyName(code Keycode) string {
	return (C.GoString)(C.SDL_GetKeyName(code.c()))
}