Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkCMYK (0.17 sec)

  1. src/image/draw/bench_test.go

    func BenchmarkYCbCr(b *testing.B) {
    	bench(b, color.RGBAModel, color.YCbCrModel, nil, Over)
    }
    
    func BenchmarkGray(b *testing.B) {
    	bench(b, color.RGBAModel, color.GrayModel, nil, Over)
    }
    
    func BenchmarkCMYK(b *testing.B) {
    	bench(b, color.RGBAModel, color.CMYKModel, nil, Over)
    }
    
    func BenchmarkGlyphOver(b *testing.B) {
    	bench(b, color.RGBAModel, nil, color.AlphaModel, Over)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top