Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump external/SPIRV-Headers from 8e2ad27 to b73e168 #78

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/SPIRV-Headers
Submodule SPIRV-Headers updated 49 files
+10 −0 .github/dependabot.yml
+7 −7 .github/workflows/presubmit.yml
+6 −0 BUILD.bazel
+2 −1 BUILD.gn
+8 −6 CMakeLists.txt
+79 −1 LICENSE
+1 −1 README.md
+13 −0 SECURITY.md
+10 −3 include/spirv/spir-v.xml
+1 −1 include/spirv/unified1/AMD_gcn_shader.h
+1 −1 include/spirv/unified1/AMD_shader_ballot.h
+1 −1 include/spirv/unified1/AMD_shader_explicit_vertex_parameter.h
+1 −1 include/spirv/unified1/AMD_shader_trinary_minmax.h
+1 −1 include/spirv/unified1/DebugInfo.h
+1 −1 include/spirv/unified1/GLSL.std.450.h
+3 −2 include/spirv/unified1/NonSemanticClspvReflection.h
+1 −1 include/spirv/unified1/NonSemanticDebugBreak.h
+1 −1 include/spirv/unified1/NonSemanticDebugPrintf.h
+1 −1 include/spirv/unified1/NonSemanticShaderDebugInfo100.h
+57 −0 include/spirv/unified1/NonSemanticVkspReflection.h
+1 −1 include/spirv/unified1/OpenCL.std.h
+1 −1 include/spirv/unified1/OpenCLDebugInfo100.h
+1 −1 include/spirv/unified1/extinst.debuginfo.grammar.json
+1 −1 include/spirv/unified1/extinst.glsl.std.450.grammar.json
+11 −1 include/spirv/unified1/extinst.nonsemantic.clspvreflection.grammar.json
+1 −1 include/spirv/unified1/extinst.nonsemantic.shader.debuginfo.100.grammar.json
+135 −0 include/spirv/unified1/extinst.nonsemantic.vkspreflection.grammar.json
+1 −1 include/spirv/unified1/extinst.opencl.debuginfo.100.grammar.json
+1 −1 include/spirv/unified1/extinst.opencl.std.100.grammar.json
+151 −2 include/spirv/unified1/spirv.bf
+2,228 −717 include/spirv/unified1/spirv.core.grammar.json
+151 −2 include/spirv/unified1/spirv.cs
+169 −2 include/spirv/unified1/spirv.h
+173 −2 include/spirv/unified1/spirv.hpp
+173 −2 include/spirv/unified1/spirv.hpp11
+169 −9 include/spirv/unified1/spirv.json
+142 −2 include/spirv/unified1/spirv.lua
+142 −2 include/spirv/unified1/spirv.py
+151 −2 include/spirv/unified1/spv.d
+4 −4 tests/CMakeLists.txt
+1 −1 tests/example.cpp
+2 −2 tools/buildHeaders/bin/generate_language_headers.py
+1 −0 tools/buildHeaders/bin/makeExtinstHeaders.py
+2 −0 tools/buildHeaders/bin/makeHeaders
+25 −24 tools/buildHeaders/header.cpp
+1 −1 tools/buildHeaders/header.h
+246 −4 tools/buildHeaders/jsonToSpirv.cpp
+14 −1 tools/buildHeaders/jsonToSpirv.h
+1 −1 tools/buildHeaders/main.cpp
Loading