|
|
|
@ -10,14 +10,9 @@ namespace ImageSharp.PixelFormats |
|
|
|
using System.Runtime.CompilerServices; |
|
|
|
using System.Runtime.InteropServices; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Unpacked pixel type containing four 8-bit unsigned normalized values ranging from 0 to 255.
|
|
|
|
/// The color components are stored in red, green, blue, and alpha order.
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// This struct is fully mutable. This is done (against the guidelines) for the sake of performance,
|
|
|
|
/// as it avoids the need to create new values for modification operations.
|
|
|
|
/// </remarks>
|
|
|
|
/// <content>
|
|
|
|
/// Provides optimized overrides for bulk operations.
|
|
|
|
/// </content>
|
|
|
|
public partial struct Rgba32 |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
|