From 8e2955f9c91754563ca3b01b1614572eb26eeabc Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 18 Mar 2023 11:23:20 +0900 Subject: [PATCH] ebiten: update comments for ColorM Updates #2171 --- colorm.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colorm.go b/colorm.go index ed30b2e3d..b1053111d 100644 --- a/colorm.go +++ b/colorm.go @@ -85,14 +85,14 @@ func (c *ColorM) Concat(other ColorM) { // Scale scales the matrix by (r, g, b, a). // -// Deprecated: as of v2.5. Use the colorm package instead. +// Deprecated: as of v2.5. Use ColorScale or the colorm package instead. func (c *ColorM) Scale(r, g, b, a float64) { c.impl = c.affineColorM().Scale(float32(r), float32(g), float32(b), float32(a)) } // ScaleWithColor scales the matrix by clr. // -// Deprecated: as of v2.5. Use the colorm package instead. +// Deprecated: as of v2.5. Use ColorScale or the colorm package instead. func (c *ColorM) ScaleWithColor(clr color.Color) { cr, cg, cb, ca := clr.RGBA() if ca == 0 {