c0549b11fa
Reduced memory pressure by adding object pooling to TextExtents.
17 lines
336 B
C#
17 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK
|
|
{
|
|
interface IPoolable : IDisposable
|
|
{
|
|
void OnAcquire();
|
|
void OnRelease();
|
|
}
|
|
|
|
interface IPoolable<T> : IPoolable where T : IPoolable<T>, new()
|
|
{
|
|
ObjectPool<T> Owner { get; set; }
|
|
}
|
|
}
|