Rasagar/Library/PackageCache/com.unity.render-pipelines.core/Runtime/Common/CommandBufferPool.cs
2024-08-26 23:07:20 +03:00

48 lines
1.5 KiB
C#

using System.Collections.Generic;
using UnityEngine.Events;
namespace UnityEngine.Rendering
{
/// <summary>
/// Command Buffer Pool
/// </summary>
public static class CommandBufferPool
{
static ObjectPool<CommandBuffer> s_BufferPool = new ObjectPool<CommandBuffer>(null, x => x.Clear());
/// <summary>
/// Get a new Command Buffer.
/// </summary>
/// <returns>Returns a new Command Buffer obtained from the buffer pool.</returns>
public static CommandBuffer Get()
{
var cmd = s_BufferPool.Get();
// Set to empty on purpose, does not create profiling markers.
cmd.name = "";
return cmd;
}
/// <summary>
/// Get a new Command Buffer and assign a name to it.
/// Named Command Buffers will add profiling makers implicitly for the buffer execution.
/// </summary>
/// <param name="name">The name to be assigned to the new Command Buffer.</param>
/// <returns>Returns a new Command Buffer with the assigned name.</returns>
public static CommandBuffer Get(string name)
{
var cmd = s_BufferPool.Get();
cmd.name = name;
return cmd;
}
/// <summary>
/// Release a Command Buffer.
/// </summary>
/// <param name="buffer">The Command Buffer to be released back into the buffer pool.</param>
public static void Release(CommandBuffer buffer)
{
s_BufferPool.Release(buffer);
}
}
}