ebiten: bug fix: wrong comments

Updates #2013
Updates #2017
This commit is contained in:
Hajime Hoshi 2022-06-15 02:23:56 +09:00
parent bac34a4474
commit 0f27999909

View File

@ -400,7 +400,7 @@ type DrawTrianglesShaderOptions struct {
Uniforms map[string]interface{} Uniforms map[string]interface{}
// Images is a set of the source images. // 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 Images [4]*Image
// FillRule indicates the rule how an overlapped region is rendered. // FillRule indicates the rule how an overlapped region is rendered.
@ -542,7 +542,7 @@ type DrawRectShaderOptions struct {
Uniforms map[string]interface{} Uniforms map[string]interface{}
// Images is a set of the source images. // 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 Images [4]*Image
} }