Added OKLCH color space

This commit is contained in:
2024-03-06 00:18:51 +01:00
parent 13f4c5fb0f
commit 30838ca0b6
5 changed files with 151 additions and 35 deletions

View File

@ -13,7 +13,23 @@ func BenchmarkRGB(b *testing.B) {
}
}
func BenchmarkFprint(b *testing.B) {
func BenchmarkLCH(b *testing.B) {
for i := 0; i < b.N; i++ {
color.LCH(0.5, 0.5, 0.0)
}
}
func BenchmarkFprintColorized(b *testing.B) {
color.Terminal = true
c := color.RGB(1.0, 1.0, 1.0)
for i := 0; i < b.N; i++ {
c.Fprint(io.Discard, "")
}
}
func BenchmarkFprintRaw(b *testing.B) {
color.Terminal = false
c := color.RGB(1.0, 1.0, 1.0)
for i := 0; i < b.N; i++ {