コード例 #1
0
ファイル: window.go プロジェクト: juturnas/glfw3
//Hide hides the window, if it was previously visible. If the window is already
//hidden or is in full screen mode, this function does nothing.
//
//This function may only be called from the main thread. See
//https://code.google.com/p/go-wiki/wiki/LockOSThread
func (w *Window) Hide() {
	C.glfwHideWindow(w.data)
}
コード例 #2
0
ファイル: window.go プロジェクト: gordonklaus/glfw
func (w *Window) Hide() { C.glfwHideWindow(w.w) }
コード例 #3
0
ファイル: window.go プロジェクト: godispy/glfw
// Hide hides the window, if it was previously visible. If the window is already
// hidden or is in full screen mode, this function does nothing.
//
// This function may only be called from the main thread.
func (w *Window) Hide() {
	C.glfwHideWindow(w.data)
	panicError()
}