IndexSetPool.cs 658 B

1234567891011121314151617181920212223242526
  1. using UnityEditor.Graphing;
  2. using UnityEditor.ShaderGraph.Drawing;
  3. namespace UnityEditor.ShaderGraph
  4. {
  5. static class IndexSetPool
  6. {
  7. // Object pool to avoid allocations.
  8. static readonly ObjectPool<IndexSet> s_IndexSetPool = new ObjectPool<IndexSet>(null, l => l.Clear());
  9. public static IndexSet Get()
  10. {
  11. return s_IndexSetPool.Get();
  12. }
  13. public static PooledObject<IndexSet> GetDisposable()
  14. {
  15. return s_IndexSetPool.GetDisposable();
  16. }
  17. public static void Release(IndexSet toRelease)
  18. {
  19. s_IndexSetPool.Release(toRelease);
  20. }
  21. }
  22. }