From 418485801fc820547f1fdf7fb90618c8b96ba460 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 21 Oct 2022 13:42:52 +0900 Subject: [PATCH] ebiten: update comments --- image.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/image.go b/image.go index a234b636e..b5d9bde3a 100644 --- a/image.go +++ b/image.go @@ -367,10 +367,10 @@ type DrawTrianglesOptions struct { FillRule FillRule // AntiAlias indicates whether the rendering uses anti-alias or not. - // AntiAlias is useful especially when you pass vertices you get from the vector package. + // AntiAlias is useful especially when you pass vertices from the vector package. // // AntiAlias increases internal draw calls and might affect performance. - // Use `ebitenginedebug` to check the number of draw calls if you care. + // Use the build tag `ebitenginedebug` to check the number of draw calls if you care. // // The default (zero) value is false. AntiAlias bool @@ -526,10 +526,10 @@ type DrawTrianglesShaderOptions struct { FillRule FillRule // AntiAlias indicates whether the rendering uses anti-alias or not. - // AntiAlias is useful especially when you pass vertices you get from the vector package. + // AntiAlias is useful especially when you pass vertices from the vector package. // // AntiAlias increases internal draw calls and might affect performance. - // Use `ebitenginedebug` to check the number of draw calls if you care. + // Use the build tag `ebitenginedebug` to check the number of draw calls if you care. // // The default (zero) value is false. AntiAlias bool