📷 A modern, cross-platform, 2D Graphics library for .NET
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.
 
 

104 lines
3.2 KiB

namespace ImageSharp.Tests.Colors
{
using System;
using Xunit;
public class BulkPixelOperationsTests
{
public class TypeParam<TColor>
{
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackFromVector4<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackToVector4<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackToXyzBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackFromXyzBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackToXyzwBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackFromXyzwBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackToZyxBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackFromZyxBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackToZyxwBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
[Theory]
[InlineData(default(TypeParam<Color>))]
[InlineData(default(TypeParam<Argb>))]
public virtual void PackFromZyxwBytes<TColor>(TypeParam<TColor> dummy)
where TColor : struct, IPixel<TColor>
{
throw new NotImplementedException();
}
}
}