diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-04 10:04:55 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-04 10:04:55 +0100 |
commit | f617c30a1e9a9a1d8e9285ea51af986978f86d57 (patch) | |
tree | f1ed447ce09cb7ecc5c311c6a483f91b900bc57c /thirdparty/glslang/SPIRV/SpvTools.h | |
parent | c98d6142d0c8cf4ac284a595ad1156a4b74736ad (diff) | |
parent | 0181d005c98dcf62fd63e19b0dec7586ac708154 (diff) |
Merge pull request #68080 from akien-mga/vulkan-sdk-1.3.231.1
vulkan: Update all components to Vulkan SDK 1.3.231.1
Diffstat (limited to 'thirdparty/glslang/SPIRV/SpvTools.h')
-rw-r--r-- | thirdparty/glslang/SPIRV/SpvTools.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/thirdparty/glslang/SPIRV/SpvTools.h b/thirdparty/glslang/SPIRV/SpvTools.h index 3fb3cbacd3..5386048ab6 100644 --- a/thirdparty/glslang/SPIRV/SpvTools.h +++ b/thirdparty/glslang/SPIRV/SpvTools.h @@ -53,14 +53,14 @@ namespace glslang { struct SpvOptions { - SpvOptions() : generateDebugInfo(false), stripDebugInfo(false), disableOptimizer(true), - optimizeSize(false), disassemble(false), validate(false) { } - bool generateDebugInfo; - bool stripDebugInfo; - bool disableOptimizer; - bool optimizeSize; - bool disassemble; - bool validate; + bool generateDebugInfo {false}; + bool stripDebugInfo {false}; + bool disableOptimizer {true}; + bool optimizeSize {false}; + bool disassemble {false}; + bool validate {false}; + bool emitNonSemanticShaderDebugInfo {false}; + bool emitNonSemanticShaderDebugSource{ false }; }; #if ENABLE_OPT |