예제 #1
0
func IsScreenKeyboardShown(window *Window) bool {
	_window := (*C.SDL_Window)(unsafe.Pointer(window))
	return C.SDL_IsScreenKeyboardShown(_window) > 0
}
예제 #2
0
파일: input.go 프로젝트: krig/Go-SDL2
func IsScreenKeyboardShown(window *Window) bool {
	active := int32(C.SDL_IsScreenKeyboardShown(window.cWindow))
	return active != 0
}
예제 #3
0
func IsScreenKeyboardShown(window *Window) bool {
	return C.SDL_IsScreenKeyboardShown(window.cptr()) > 0
}