Esempio n. 1
0
func SetWindowSize(w, h int) {
	glfw.SetWindowSize(w, h)
	onResize(w, h)
}
Esempio n. 2
0
func reloadSettings() {
	glfw.SetWindowSize(Settings.Resolution.Width, Settings.Resolution.Height)
}
Esempio n. 3
0
func (w *window) SetSize(width, height int) {
	glfw.SetWindowSize(width, height)
}