You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
449 B
11 lines
449 B
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[GenerationAPI]
|
|
internal enum KeywordDefinition
|
|
{
|
|
ShaderFeature, // adds #pragma shaderfeature for the keyword
|
|
MultiCompile, // adds #pragma multicompile for the keyword
|
|
Predefined, // does not add ShaderFeature or MultiCompile pragmas, and is forced to be !exposed
|
|
DynamicBranch, // adds #pragma dynamic_branch for the keyword
|
|
}
|
|
}
|