Unverified Commit f426f652 by greg-lunarg Committed by GitHub

Merge pull request #2490 from greg-lunarg/i2476

Fix tess factor cut and paste error
parents 6d5916d4 efe4586f
...@@ -9869,7 +9869,7 @@ void HlslParseContext::addPatchConstantInvocation() ...@@ -9869,7 +9869,7 @@ void HlslParseContext::addPatchConstantInvocation()
} else { } else {
// Use the original declaration type for the linkage // Use the original declaration type for the linkage
paramType->getQualifier().builtIn = biType; paramType->getQualifier().builtIn = biType;
if (biType == EbvTessLevelInner || biType == EbvTessLevelInner) if (biType == EbvTessLevelInner || biType == EbvTessLevelOuter)
paramType->getQualifier().patch = true; paramType->getQualifier().patch = true;
if (notInEntryPoint.count(tInterstageIoData(biType, storage)) == 1) if (notInEntryPoint.count(tInterstageIoData(biType, storage)) == 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment