Browse Source

restored <inheritdoc /> on PackedValue-s

pull/110/head
Anton Firszov 9 years ago
parent
commit
571a0cfb45
  1. 4
      src/ImageSharp/Colors/Color.cs
  2. 4
      src/ImageSharp/Colors/PackedPixel/Alpha8.cs
  3. 4
      src/ImageSharp/Colors/PackedPixel/Argb.cs
  4. 4
      src/ImageSharp/Colors/PackedPixel/Bgr565.cs
  5. 4
      src/ImageSharp/Colors/PackedPixel/Bgra4444.cs
  6. 4
      src/ImageSharp/Colors/PackedPixel/Bgra5551.cs
  7. 4
      src/ImageSharp/Colors/PackedPixel/Byte4.cs
  8. 4
      src/ImageSharp/Colors/PackedPixel/HalfSingle.cs
  9. 4
      src/ImageSharp/Colors/PackedPixel/HalfVector2.cs
  10. 4
      src/ImageSharp/Colors/PackedPixel/HalfVector4.cs
  11. 4
      src/ImageSharp/Colors/PackedPixel/NormalizedByte2.cs
  12. 4
      src/ImageSharp/Colors/PackedPixel/NormalizedByte4.cs
  13. 4
      src/ImageSharp/Colors/PackedPixel/NormalizedShort2.cs
  14. 4
      src/ImageSharp/Colors/PackedPixel/NormalizedShort4.cs
  15. 4
      src/ImageSharp/Colors/PackedPixel/Rg32.cs
  16. 4
      src/ImageSharp/Colors/PackedPixel/Rgba1010102.cs
  17. 4
      src/ImageSharp/Colors/PackedPixel/Rgba64.cs
  18. 4
      src/ImageSharp/Colors/PackedPixel/Short2.cs
  19. 4
      src/ImageSharp/Colors/PackedPixel/Short4.cs

4
src/ImageSharp/Colors/Color.cs

@ -184,9 +184,7 @@ namespace ImageSharp
}
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue
{
get

4
src/ImageSharp/Colors/PackedPixel/Alpha8.cs

@ -23,9 +23,7 @@ namespace ImageSharp
this.PackedValue = Pack(alpha);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc />
public byte PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Argb.cs

@ -106,9 +106,7 @@ namespace ImageSharp
this.PackedValue = packed;
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Bgr565.cs

@ -36,9 +36,7 @@ namespace ImageSharp
this.PackedValue = Pack(vector.X, vector.Y, vector.Z);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ushort PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Bgra4444.cs

@ -35,9 +35,7 @@ namespace ImageSharp
this.PackedValue = Pack(vector.X, vector.Y, vector.Z, vector.W);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ushort PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Bgra5551.cs

@ -37,9 +37,7 @@ namespace ImageSharp
this.PackedValue = Pack(vector.X, vector.Y, vector.Z, vector.W);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ushort PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Byte4.cs

@ -38,9 +38,7 @@ namespace ImageSharp
this.PackedValue = Pack(ref vector);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/HalfSingle.cs

@ -33,9 +33,7 @@ namespace ImageSharp
this.PackedValue = HalfTypeHelper.Pack(single);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ushort PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/HalfVector2.cs

@ -43,9 +43,7 @@ namespace ImageSharp
this.PackedValue = Pack(vector.X, vector.Y);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/HalfVector4.cs

@ -46,9 +46,7 @@ namespace ImageSharp
this.PackedValue = Pack(ref vector);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ulong PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/NormalizedByte2.cs

@ -48,9 +48,7 @@ namespace ImageSharp
this.PackedValue = Pack(x, y);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ushort PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/NormalizedByte4.cs

@ -50,9 +50,7 @@ namespace ImageSharp
this.PackedValue = Pack(x, y, z, w);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/NormalizedShort2.cs

@ -48,9 +48,7 @@ namespace ImageSharp
this.PackedValue = Pack(x, y);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/NormalizedShort4.cs

@ -50,9 +50,7 @@ namespace ImageSharp
this.PackedValue = Pack(x, y, z, w);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ulong PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Rg32.cs

@ -33,9 +33,7 @@ namespace ImageSharp
this.PackedValue = Pack(vector.X, vector.Y);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Rgba1010102.cs

@ -36,9 +36,7 @@ namespace ImageSharp
this.PackedValue = Pack(vector.X, vector.Y, vector.Z, vector.W);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Rgba64.cs

@ -35,9 +35,7 @@ namespace ImageSharp
this.PackedValue = Pack(vector.X, vector.Y, vector.Z, vector.W);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ulong PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Short2.cs

@ -48,9 +48,7 @@ namespace ImageSharp
this.PackedValue = Pack(x, y);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public uint PackedValue { get; set; }
/// <summary>

4
src/ImageSharp/Colors/PackedPixel/Short4.cs

@ -50,9 +50,7 @@ namespace ImageSharp
this.PackedValue = Pack(x, y, z, w);
}
/// <summary>
/// Gets or sets the packed representation of the value.
/// </summary>
/// <inheritdoc/>
public ulong PackedValue { get; set; }
/// <summary>

Loading…
Cancel
Save