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.
18 lines
513 B
18 lines
513 B
<#@include file="_Common.ttinclude" #>
|
|
<#@ output extension=".cs" #>
|
|
namespace SixLabors.ImageSharp.PixelFormats
|
|
{
|
|
/// <content>
|
|
/// Provides optimized overrides for bulk operations.
|
|
/// </content>
|
|
public partial struct L16
|
|
{
|
|
/// <summary>
|
|
/// Provides optimized overrides for bulk operations.
|
|
/// </summary>
|
|
internal partial class PixelOperations : PixelOperations<L16>
|
|
{
|
|
<# GenerateAllDefaultConversionMethods("L16"); #>
|
|
}
|
|
}
|
|
}
|
|
|