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.
44 lines
1.2 KiB
44 lines
1.2 KiB
// Copyright (c) Six Labors and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using System.Numerics;
|
|
|
|
using Xunit;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Helpers
|
|
{
|
|
public class Vector4UtilsTests
|
|
{
|
|
[Theory]
|
|
[InlineData(0)]
|
|
[InlineData(1)]
|
|
[InlineData(30)]
|
|
public void Premultiply_VectorSpan(int length)
|
|
{
|
|
var rnd = new Random(42);
|
|
Vector4[] source = rnd.GenerateRandomVectorArray(length, 0, 1);
|
|
Vector4[] expected = source.Select(v => Vector4Utils.Premultiply(v)).ToArray();
|
|
|
|
Vector4Utils.Premultiply(source);
|
|
|
|
Assert.Equal(expected, source, new ApproximateFloatComparer(1e-6f));
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(0)]
|
|
[InlineData(1)]
|
|
[InlineData(30)]
|
|
public void UnPremultiply_VectorSpan(int length)
|
|
{
|
|
var rnd = new Random(42);
|
|
Vector4[] source = rnd.GenerateRandomVectorArray(length, 0, 1);
|
|
Vector4[] expected = source.Select(v => Vector4Utils.UnPremultiply(v)).ToArray();
|
|
|
|
Vector4Utils.UnPremultiply(source);
|
|
|
|
Assert.Equal(expected, source, new ApproximateFloatComparer(1e-6f));
|
|
}
|
|
}
|
|
}
|
|
|