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