16 lines
202 B
C#
16 lines
202 B
C#
namespace UnityEditor.ShaderGraph.Internal
|
|
{
|
|
enum Precision
|
|
{
|
|
Inherit,
|
|
Single,
|
|
Half,
|
|
}
|
|
|
|
public enum ConcretePrecision
|
|
{
|
|
Single,
|
|
Half,
|
|
}
|
|
}
|