Firstborn/Library/PackageCache/com.unity.render-pipelines..../Runtime/SampleCount.cs

10 lines
138 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
namespace UnityEngine.Rendering.Universal
{
public enum SampleCount
{
One = 1,
Two = 2,
Four = 4,
}
}