mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
498 B
19 lines
498 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
using BenchmarkDotNet.Attributes;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Processing;
|
|
|
|
namespace SixLabors.ImageSharp.Benchmarks.Processing;
|
|
|
|
[Config(typeof(Config.Standard))]
|
|
public class OilPaint
|
|
{
|
|
[Benchmark]
|
|
public void DoOilPaint()
|
|
{
|
|
using Image<RgbaVector> image = new(1920, 1200, new RgbaVector(127, 191, 255));
|
|
image.Mutate(ctx => ctx.OilPaint());
|
|
}
|
|
}
|
|
|