From 42332c7b49b852689d8ba61ffbcaf637f4f36958 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 24 Jun 2016 01:24:08 +0900 Subject: [PATCH] graphics: Fix a comment --- graphicscontext.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphicscontext.go b/graphicscontext.go index 2a39937e9..d3f55b979 100644 --- a/graphicscontext.go +++ b/graphicscontext.go @@ -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 }