2021-09-09 20:42:29 -04:00

16 lines
202 B
C#

namespace UnityEditor.ShaderGraph.Internal
{
enum Precision
{
Inherit,
Single,
Half,
}
public enum ConcretePrecision
{
Single,
Half,
}
}