From 8ac50a47f9c0bdebb96da14e1eff63f7ba0d77bb Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 1 Oct 2018 02:37:53 +0900 Subject: [PATCH] examples/blur: Fix comments --- examples/blur/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/blur/main.go b/examples/blur/main.go index 58860045a..709278595 100644 --- a/examples/blur/main.go +++ b/examples/blur/main.go @@ -44,7 +44,8 @@ func update(screen *ebiten.Image) error { op.GeoM.Translate(0, 0) screen.DrawImage(gophersImage, op) - // Simple linear blur (7x7) + // Box blur (7x7) + // https://en.wikipedia.org/wiki/Box_blur for j := -3; j <= 3; j++ { for i := -3; i <= 3; i++ { op := &ebiten.DrawImageOptions{}