From 0f279999090579fba18971652066fe3306e23da0 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 15 Jun 2022 02:23:56 +0900 Subject: [PATCH] ebiten: bug fix: wrong comments Updates #2013 Updates #2017 --- image.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.go b/image.go index d20630f01..19e9f7d4e 100644 --- a/image.go +++ b/image.go @@ -400,7 +400,7 @@ type DrawTrianglesShaderOptions struct { Uniforms map[string]interface{} // Images is a set of the source images. - // All the image must be the same bounds. + // All the images must be the same sizes. Images [4]*Image // FillRule indicates the rule how an overlapped region is rendered. @@ -542,7 +542,7 @@ type DrawRectShaderOptions struct { Uniforms map[string]interface{} // Images is a set of the source images. - // All the image must be the same bounds. + // All the images must be the same sizes. Images [4]*Image }