Merge branch 'feature' of https://github.com/amdrexu/glslang into amdrexu-feature

This commit is contained in:
John Kessenich 2018-03-07 14:29:09 -07:00
commit fb97d25c98
5 changed files with 22 additions and 3 deletions

View file

@ -119,6 +119,7 @@ public:
bool relaxedErrors() const { return (messages & EShMsgRelaxedErrors) != 0; }
bool suppressWarnings() const { return (messages & EShMsgSuppressWarnings) != 0; }
bool isReadingHLSL() const { return (messages & EShMsgReadHlsl) == EShMsgReadHlsl; }
bool hlslEnable16BitTypes() const { return (messages & EShMsgHlslEnable16BitTypes) != 0; }
TInfoSink& infoSink;