예제 #1
0
파일: gina.go 프로젝트: dane-unltd/gina
func SetWindowSize(w, h int) {
	glfw.SetWindowSize(w, h)
	onResize(w, h)
}
예제 #2
0
파일: settings.go 프로젝트: vova616/mater
func reloadSettings() {
	glfw.SetWindowSize(Settings.Resolution.Width, Settings.Resolution.Height)
}
예제 #3
0
func (w *window) SetSize(width, height int) {
	glfw.SetWindowSize(width, height)
}