StellarXipher/Library/PackageCache/com.unity.render-pipelines.universal@0737ab768e18/Runtime/SampleCount.cs
2025-02-06 16:45:46 -05:00

25 lines
484 B
C#

namespace UnityEngine.Rendering.Universal
{
// Should be made obsolete
/// <summary>
/// Options for Sample Count.
/// </summary>
public enum SampleCount
{
/// <summary>
/// Use this for 1 sample.
/// </summary>
One = 1,
/// <summary>
/// Use this for 2 samples.
/// </summary>
Two = 2,
/// <summary>
/// Use this for 4 samples.
/// </summary>
Four = 4,
}
}