keep things tidy

This commit is contained in:
Loic Nageleisen 2014-04-26 10:22:28 +02:00
parent 1fb90c10c5
commit 9124a77418
2 changed files with 4 additions and 4 deletions

View file

@ -8,8 +8,6 @@ import (
pa "code.google.com/p/portaudio-go/portaudio"
)
var _ = gl.Begin // TODO: remove later
var _ = glfw.Init // TODO: remove later
var _ = pa.Initialize // TODO: remove later
func onError(err glfw.ErrorCode, desc string) {
@ -27,7 +25,6 @@ func onKey(window *glfw.Window, k glfw.Key, s int, action glfw.Action, mods glfw
default:
return
}
}
func main() {
@ -70,7 +67,6 @@ func setup() {
gl.DepthFunc(gl.LEQUAL)
}
func destroy() {
// TODO: release objects
}