From 7c458f519ed83b4d7ad2c46e50ce3f70394e4832 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 10 Jun 2022 13:53:24 +0900 Subject: [PATCH] internal/atlas: remove unnecessary comments --- internal/atlas/image.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/atlas/image.go b/internal/atlas/image.go index 123e0e939..4a5fcc723 100644 --- a/internal/atlas/image.go +++ b/internal/atlas/image.go @@ -341,8 +341,6 @@ func (i *Image) putOnAtlas(graphicsDriver graphicsdriver.Graphics) error { newI := NewImage(i.width, i.height, ImageTypeRegular) - // If the underlying graphics driver doesn't require restoring from the context lost, just a regular - // rendering works. w, h := float32(i.width), float32(i.height) vs := graphics.QuadVertices(0, 0, w, h, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1) is := graphics.QuadIndices()