Merge pull request #120 from amdrexu/bugfix2
Parser: Correct the storage qualifier of gl_HelperInvocation.
This commit is contained in:
commit
a3211bfe72
1 changed files with 1 additions and 1 deletions
|
|
@ -3048,7 +3048,7 @@ void IdentifyBuiltIns(int version, EProfile profile, int spv, EShLanguage langua
|
||||||
SpecialQualifier("gl_FragColor", EvqFragColor, EbvFragColor, symbolTable);
|
SpecialQualifier("gl_FragColor", EvqFragColor, EbvFragColor, symbolTable);
|
||||||
SpecialQualifier("gl_FragDepth", EvqFragDepth, EbvFragDepth, symbolTable);
|
SpecialQualifier("gl_FragDepth", EvqFragDepth, EbvFragDepth, symbolTable);
|
||||||
SpecialQualifier("gl_FragDepthEXT", EvqFragDepth, EbvFragDepth, symbolTable);
|
SpecialQualifier("gl_FragDepthEXT", EvqFragDepth, EbvFragDepth, symbolTable);
|
||||||
SpecialQualifier("gl_HelperInvocation", EvqIn, EbvHelperInvocation, symbolTable);
|
SpecialQualifier("gl_HelperInvocation", EvqVaryingIn, EbvHelperInvocation, symbolTable);
|
||||||
|
|
||||||
BuiltInVariable("gl_ClipDistance", EbvClipDistance, symbolTable);
|
BuiltInVariable("gl_ClipDistance", EbvClipDistance, symbolTable);
|
||||||
BuiltInVariable("gl_CullDistance", EbvCullDistance, symbolTable);
|
BuiltInVariable("gl_CullDistance", EbvCullDistance, symbolTable);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue