From 2fab556dd93dc338834ef3dc4e8fdfae0e51b340 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 27 Oct 2024 22:44:58 +0900 Subject: [PATCH] internal/affine: refactoring: remove unused types --- internal/affine/colorm.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/internal/affine/colorm.go b/internal/affine/colorm.go index 2bdcc96d1..be390697c 100644 --- a/internal/affine/colorm.go +++ b/internal/affine/colorm.go @@ -783,12 +783,3 @@ func ChangeHSV(c ColorM, hueTheta float64, saturationScale float32, valueScale f c = c.Concat(yCbCrToRgb) return c } - -type cachedScalingColorMKey struct { - r, g, b, a float32 -} - -type cachedScalingColorMValue struct { - c *colorMImplScale - atime uint64 -}