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

@ -70,7 +70,7 @@
// This should always increase, as some paths to do not consume
// a more major number.
// It should increment by one when new functionality is added.
#define GLSLANG_MINOR_VERSION 2
#define GLSLANG_MINOR_VERSION 3
//
// Call before doing any other compiler/linker operations.
@ -211,6 +211,7 @@ enum EShMessages {
EShMsgKeepUncalled = (1 << 8), // for testing, don't eliminate uncalled functions
EShMsgHlslOffsets = (1 << 9), // allow block offsets to follow HLSL rules instead of GLSL rules
EShMsgDebugInfo = (1 << 10), // save debug information
EShMsgHlslEnable16BitTypes = (1 << 11), // enable use of 16-bit types in SPIR-V for HLSL
};
//