HLSL: Remove unintended/untested functionality PrimitiveID.
This was listed as outputs for tessellation stages, but they are input only.
This commit is contained in:
parent
67fca7c4ce
commit
87982be1a0
1 changed files with 1 additions and 1 deletions
|
|
@ -9048,7 +9048,7 @@ bool HlslParseContext::isOutputBuiltIn(const TQualifier& qualifier) const
|
|||
case EbvViewportIndex:
|
||||
return language == EShLangGeometry;
|
||||
case EbvPrimitiveId:
|
||||
return language == EShLangGeometry || language == EShLangTessControl || language == EShLangTessEvaluation;
|
||||
return language == EShLangGeometry;
|
||||
case EbvTessLevelInner:
|
||||
case EbvTessLevelOuter:
|
||||
return language == EShLangTessControl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue