Browse Source

xml doc fixes

af/merge-core
Scott Williams 9 years ago
parent
commit
506b59686b
  1. 12
      src/ImageSharp.Drawing/Brushes/Processors/BrushApplicator.cs
  2. 6
      src/ImageSharp.Drawing/Pens/Processors/PenApplicator.cs

12
src/ImageSharp.Drawing/Brushes/Processors/BrushApplicator.cs

@ -19,16 +19,12 @@ namespace ImageSharp.Drawing.Processors
/// <summary>
/// Gets the color for a single pixel.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
/// <returns>
/// The color
/// </returns>
/// <param name="x">The x cordinate.</param>
/// <param name="y">The y cordinate.</param>
/// <returns>The a <typeparamref name="TColor"/> that should be applied to the pixel.</returns>
public abstract TColor this[int x, int y] { get; }
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
/// <inheritdoc/>
public abstract void Dispose();
}
}

6
src/ImageSharp.Drawing/Pens/Processors/PenApplicator.cs

@ -22,10 +22,8 @@ namespace ImageSharp.Drawing.Processors
/// The required region.
/// </value>
public abstract RectangleF RequiredRegion { get; }
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
/// <inheritdoc/>
public abstract void Dispose();
/// <summary>

Loading…
Cancel
Save