graphics: Fix a comment

This commit is contained in:
Hajime Hoshi 2016-06-24 01:24:08 +09:00
parent 8935846de7
commit 42332c7b49

View File

@ -146,7 +146,7 @@ func (c *graphicsContext) flush() error {
if err := graphics.FlushCommands(ui.GLContext()); err != nil {
return err
}
// Call glFlush to prevent black flicking (especially on Android (#226)).
// Call glFlush to prevent black flicking (especially on Android (#226) and iOS).
ui.GLContext().Flush()
return nil
}