mirror of https://github.com/SixLabors/ImageSharp
2 changed files with 4 additions and 4 deletions
@ -1,9 +1,9 @@ |
|||||
namespace SixLabors.ImageSharp.Memory |
namespace SixLabors.ImageSharp.Memory |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Implements <see cref="MemoryManager"/> by allocating new buffers on every call.
|
/// Implements <see cref="MemoryManager"/> by newing up arrays by the GC on every allocation requests.
|
||||
/// </summary>
|
/// </summary>
|
||||
public class SimpleManagedMemoryManager : MemoryManager |
public class SimpleGcMemoryManager : MemoryManager |
||||
{ |
{ |
||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||
internal override IBuffer<T> Allocate<T>(int length, bool clear) |
internal override IBuffer<T> Allocate<T>(int length, bool clear) |
||||
Loading…
Reference in new issue