From 9453f9e7b542e3bd0923f84058b089fe3fb9cb30 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 28 Jun 2016 03:05:47 +0900 Subject: [PATCH] graphics: Fix a comment --- internal/graphics/command.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/internal/graphics/command.go b/internal/graphics/command.go index 55202bd79..41dad7200 100644 --- a/internal/graphics/command.go +++ b/internal/graphics/command.go @@ -137,9 +137,8 @@ func (c *replacePixelsCommand) Exec(context *opengl.Context) error { return err } // Filling with non black or white color is required here for glTexSubImage2D. - // Very mysterious but this actually works (Issue #186) - // TODO: As shader bug was fixed at f537378f2a6a8ef56e1acf1c03034967b77c7b51, - // can we remove this? + // Very mysterious but this actually works (Issue #186). + // This is needed even after fixing a shader bug at f537378f2a6a8ef56e1acf1c03034967b77c7b51. if err := context.FillFramebuffer(0, 0, 0.5, 1); err != nil { return err }