HLSL: Fix #771: add inline keyword.

This commit is contained in:
John Kessenich 2017-03-15 09:05:14 -06:00
parent 95e736c83b
commit 36b218de91
5 changed files with 9 additions and 3 deletions

View file

@ -627,6 +627,9 @@ bool HlslGrammar::acceptQualifier(TQualifier& qualifier)
case EHTokGloballyCoherent:
qualifier.coherent = true;
break;
case EHTokInline:
// TODO: map this to SPIR-V function control
break;
// GS geometries: these are specified on stage input variables, and are an error (not verified here)
// for output variables.