mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
ui: Use goroutine to avoid blocking on GopherJS
This commit is contained in:
parent
3136ef5fbd
commit
6e12f287b0
@ -208,8 +208,10 @@ func (u *userInterface) loop(g GraphicsContext) error {
|
||||
var cf js.Callback
|
||||
f = func([]js.Value) {
|
||||
if err := u.update(g); err != nil {
|
||||
ch <- err
|
||||
close(ch)
|
||||
go func() {
|
||||
ch <- err
|
||||
close(ch)
|
||||
}()
|
||||
return
|
||||
}
|
||||
js.Global.Get("window").Call("requestAnimationFrame", cf)
|
||||
|
Loading…
Reference in New Issue
Block a user