2
0
mirror of synced 2025-02-21 14:08:14 +00:00

app: call Start on darwin

Still working on how/when to call Stop.

Change-Id: Ice56c4c71ba351765657bb86dc01649c8238859e
Reviewed-on: https://go-review.googlesource.com/1885
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This commit is contained in:
David Crawshaw 2014-12-19 14:15:59 -05:00
parent b2e453e1cd
commit 93ef3562fa

View File

@ -74,6 +74,9 @@ func initGL() {
var id C.GLuint
C.glGenVertexArrays(1, &id)
C.glBindVertexArray(id)
if cb.Start != nil {
cb.Start()
}
}
var cb Callbacks