-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8129422
commit a9f9f4b
Showing
10 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule SPIRV-Cross
updated
519 files
Submodule SPIRV-Headers
updated
25 files
+87 −1 | .github/workflows/presubmit.yml | |
+29 −101 | CMakeLists.txt | |
+13 −0 | SECURITY.md | |
+0 −4 | cmake/Config.cmake.in | |
+1 −2 | cmake/SPIRV-Headers.pc.in | |
+0 −4 | example/CMakeLists.txt | |
+14 −4 | include/spirv/spir-v.xml | |
+77 −0 | include/spirv/unified1/spirv.bf | |
+489 −6 | include/spirv/unified1/spirv.core.grammar.json | |
+77 −0 | include/spirv/unified1/spirv.cs | |
+91 −0 | include/spirv/unified1/spirv.h | |
+95 −0 | include/spirv/unified1/spirv.hpp | |
+135 −40 | include/spirv/unified1/spirv.hpp11 | |
+79 −3 | include/spirv/unified1/spirv.json | |
+73 −0 | include/spirv/unified1/spirv.lua | |
+73 −0 | include/spirv/unified1/spirv.py | |
+77 −0 | include/spirv/unified1/spv.d | |
+47 −0 | tests/CMakeLists.txt | |
+0 −0 | tests/example.cpp | |
+23 −0 | tests/find_package/CMakeLists.txt | |
+23 −0 | tests/pkg_config/CMakeLists.txt | |
+2 −0 | tools/buildHeaders/bin/makeHeaders | |
+19 −11 | tools/buildHeaders/header.cpp | |
+17 −0 | tools/buildHeaders/jsonToSpirv.cpp | |
+3 −0 | tools/buildHeaders/jsonToSpirv.h |
Submodule SPIRV-Tools
updated
350 files
Submodule Vulkan-Headers
updated
75 files
Submodule googletest
updated
114 files
Submodule volk
updated
6 files
+6 −0 | .github/workflows/build.yml | |
+18 −16 | .github/workflows/update.yml | |
+1 −1 | CMakeLists.txt | |
+21 −3 | generate.py | |
+399 −188 | volk.c | |
+263 −125 | volk.h |
Submodule xxHash
updated
33 files
+169 −140 | .github/workflows/ci.yml | |
+5 −0 | .gitignore | |
+0 −1 | .tipi/deps | |
+0 −0 | .tipi/opts | |
+24 −0 | CHANGELOG | |
+6 −4 | Doxyfile | |
+63 −0 | Doxyfile-internal | |
+34 −6 | Makefile | |
+2 −19 | README.md | |
+13 −0 | SECURITY.md | |
+11 −1 | cli/xsum_arch.h | |
+13 −1 | cli/xsum_bench.c | |
+26 −1 | cli/xsum_os_specific.c | |
+28 −26 | cli/xsum_sanity_check.c | |
+31 −17 | cli/xxhsum.1 | |
+27 −23 | cli/xxhsum.1.md | |
+48 −8 | cli/xxhsum.c | |
+45 −28 | cmake_unofficial/CMakeLists.txt | |
+23 −0 | cmake_unofficial/JoinPaths.cmake | |
+1 −0 | cmake_unofficial/README.md | |
+474 −5 | doc/xxhash_spec.md | |
+2 −2 | libxxhash.pc.in | |
+20 −1 | tests/Makefile | |
+32 −0 | tests/cli-comment-line.sh | |
+51 −0 | tests/cli-ignore-missing.sh | |
+8 −5 | tests/collisions/Makefile | |
+97 −71 | tests/collisions/main.c | |
+763 −0 | tests/sanity_test.c | |
+45,832 −0 | tests/sanity_test_vectors.h | |
+464 −0 | tests/sanity_test_vectors_generator.c | |
+135 −60 | xxh_x86dispatch.c | |
+8 −8 | xxh_x86dispatch.h | |
+929 −445 | xxhash.h |