コード例 #1
0
ファイル: glfw.go プロジェクト: andrebq/glfw
// SetWindowTitle changes the title of the opened window.
func SetWindowTitle(title string) { C.glfwSetWindowTitle(C.CString(title)) }
コード例 #2
0
ファイル: glfw.go プロジェクト: maun/glfw
func SetWindowTitle(window Window, title string) {
	cs := C.CString(title)
	defer C.free(unsafe.Pointer(cs))
	C.glfwSetWindowTitle(C.GLFWwindow(window), cs)
}
コード例 #3
0
ファイル: window.go プロジェクト: gordonklaus/glfw
func (w *Window) SetTitle(s string) {
	C.glfwSetWindowTitle(w.w, C.CString(s))
}
コード例 #4
0
ファイル: window.go プロジェクト: juturnas/glfw3
//SetTitle sets the window title, encoded as UTF-8, of the window.
//
//This function may only be called from the main thread. See
//https://code.google.com/p/go-wiki/wiki/LockOSThread
func (w *Window) SetTitle(title string) {
	t := C.CString(title)
	defer C.free(unsafe.Pointer(t))
	C.glfwSetWindowTitle(w.data, t)
}