Browse Source

better comments

af/octree-no-pixelmap
Anton Firszov 6 years ago
parent
commit
1e663d72de
  1. 2
      src/ImageSharp/Memory/DiscontinuousProto/IUniformMemoryGroup{T}.cs
  2. 4
      src/ImageSharp/Memory/DiscontinuousProto/UniformMemoryGroup{T}.cs

2
src/ImageSharp/Memory/DiscontinuousProto/IUniformMemoryGroup{T}.cs

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace SixLabors.ImageSharp.Memory.DiscontinuousProto
{
/// <summary>
/// Represents a group of one or more uniformly-sized discontinuous memory segments.
/// Represents discontinuous group of multiple uniformly-sized memory segments.
/// The last segment can be smaller than the preceding ones.
/// </summary>
/// <typeparam name="T">The element type.</typeparam>

4
src/ImageSharp/Memory/DiscontinuousProto/UniformMemoryGroup{T}.cs

@ -5,7 +5,9 @@ using System.Collections.Generic;
namespace SixLabors.ImageSharp.Memory.DiscontinuousProto
{
/// <summary>
/// Represents a group of one or more uniformly-sized discontinuous memory segments, owned by this instance.
/// Represents discontinuous group of multiple uniformly-sized memory segments.
/// The underlying buffers may change with time, therefore it's not safe to expose them directly on
/// <see cref="Image{TPixel}"/> and <see cref="ImageFrame{TPixel}"/>.
/// </summary>
/// <typeparam name="T">The element type.</typeparam>
public abstract partial class UniformMemoryGroup<T> : IUniformMemoryGroup<T>, IDisposable where T : struct

Loading…
Cancel
Save