internal/affine: refactoring: remove unused types

This commit is contained in:
Hajime Hoshi 2024-10-27 22:44:58 +09:00
parent 17c2b1b325
commit 2fab556dd9

View File

@ -783,12 +783,3 @@ func ChangeHSV(c ColorM, hueTheta float64, saturationScale float32, valueScale f
c = c.Concat(yCbCrToRgb) c = c.Concat(yCbCrToRgb)
return c return c
} }
type cachedScalingColorMKey struct {
r, g, b, a float32
}
type cachedScalingColorMValue struct {
c *colorMImplScale
atime uint64
}