using System.Collections.Generic; using UnityEngine.Events; namespace UnityEngine.Rendering { /// /// Command Buffer Pool /// public static class CommandBufferPool { static ObjectPool s_BufferPool = new ObjectPool(null, x => x.Clear()); /// /// Get a new Command Buffer. /// /// public static CommandBuffer Get() { var cmd = s_BufferPool.Get(); cmd.name = "Unnamed Command Buffer"; return cmd; } /// /// Get a new Command Buffer and assign a name to it. /// /// /// public static CommandBuffer Get(string name) { var cmd = s_BufferPool.Get(); cmd.name = name; return cmd; } /// /// Release a Command Buffer. /// /// public static void Release(CommandBuffer buffer) { s_BufferPool.Release(buffer); } } }