Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/image/draw/bench_test.go

    		DrawMask(dst, dst.Bounds().Add(image.Pt(x, y)), src, image.Point{}, mask, image.Point{}, op)
    	}
    }
    
    // The BenchmarkFoo functions exercise a drawFoo fast-path function in draw.go.
    
    func BenchmarkFillOver(b *testing.B) {
    	bench(b, color.RGBAModel, nil, nil, Over)
    }
    
    func BenchmarkFillSrc(b *testing.B) {
    	bench(b, color.RGBAModel, nil, nil, Src)
    }
    
    func BenchmarkCopyOver(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)
Back to top