Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AlphaModel (0.11 sec)

  1. src/image/draw/bench_test.go

    }
    
    func BenchmarkGlyphOver(b *testing.B) {
    	bench(b, color.RGBAModel, nil, color.AlphaModel, Over)
    }
    
    func BenchmarkRGBAMaskOver(b *testing.B) {
    	bench(b, color.RGBAModel, color.RGBAModel, color.AlphaModel, Over)
    }
    
    func BenchmarkGrayMaskOver(b *testing.B) {
    	bench(b, color.RGBAModel, color.GrayModel, color.AlphaModel, Over)
    }
    
    func BenchmarkRGBA64ImageMaskOver(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/image/color/color.go

    var (
    	RGBAModel    Model = ModelFunc(rgbaModel)
    	RGBA64Model  Model = ModelFunc(rgba64Model)
    	NRGBAModel   Model = ModelFunc(nrgbaModel)
    	NRGBA64Model Model = ModelFunc(nrgba64Model)
    	AlphaModel   Model = ModelFunc(alphaModel)
    	Alpha16Model Model = ModelFunc(alpha16Model)
    	GrayModel    Model = ModelFunc(grayModel)
    	Gray16Model  Model = ModelFunc(gray16Model)
    )
    
    func rgbaModel(c Color) Color {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top