Fixed bug in text renderer, upgraded to GLFW 3.2, added fullscreen and FPS limitation.

This commit is contained in:
Marvin Blum
2016-08-08 21:35:01 +02:00
parent 3c1fb484b9
commit 092ad543e5
4 changed files with 49 additions and 19 deletions

View File

@@ -55,6 +55,7 @@ func main() {
options := goga.RunOptions{ClearColor: goga.Vec4{0, 0, 0, 0},
Resizable: true,
SetViewportOnResize: true,
ExitOnClose: true}
ExitOnClose: true,
Fullscreen: true}
goga.Run(&game, &options)
}