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

Add missing validate_tensor_layout.cpp to fix dependabot builds #258

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
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 bgfx
Submodule bgfx updated 268 files
2 changes: 1 addition & 1 deletion bimg
2 changes: 1 addition & 1 deletion bx
Submodule bx updated 62 files
+1 −1 .github/workflows/main.yml
+4 −2 include/bx/bx.h
+5 −8 include/bx/constants.h
+2 −2 include/bx/error.h
+4 −4 include/bx/file.h
+5 −6 include/bx/inline/allocator.inl
+19 −8 include/bx/inline/bx.inl
+2 −2 include/bx/inline/handlealloc.inl
+1 −1 include/bx/inline/hash.inl
+370 −113 include/bx/inline/math.inl
+22 −21 include/bx/inline/pixelformat.inl
+14 −14 include/bx/inline/readerwriter.inl
+8 −8 include/bx/inline/rng.inl
+1 −1 include/bx/inline/simd128_langext.inl
+2 −2 include/bx/inline/simd128_ref.inl
+6 −6 include/bx/inline/sort.inl
+2 −2 include/bx/inline/spscqueue.inl
+15 −15 include/bx/inline/string.inl
+4 −4 include/bx/inline/typetraits.inl
+36 −46 include/bx/inline/uint32_t.inl
+6 −3 include/bx/macros.h
+0 −58 include/bx/maputil.h
+51 −38 include/bx/math.h
+12 −0 include/bx/os.h
+8 −14 include/bx/platform.h
+3 −3 include/bx/rng.h
+1 −1 include/bx/string.h
+3 −3 include/bx/typetraits.h
+9 −13 include/bx/uint32_t.h
+0 −5 include/compat/freebsd/alloca.h
+0 −6 include/compat/mingw/alloca.h
+0 −1 include/compat/msvc/alloca.h
+0 −306 include/compat/msvc/inttypes.h
+0 −276 include/compat/msvc/pre1600/stdint.h
+0 −47 include/compat/msvc/stdbool.h
+11 −17 scripts/genie.lua
+14 −39 scripts/toolchain.lua
+1 −1 src/bounds.cpp
+2 −2 src/debug.cpp
+11 −24 src/dtoa.cpp
+1 −1 src/easing.cpp
+3 −3 src/file.cpp
+6 −6 src/hash.cpp
+2 −218 src/math.cpp
+2 −2 src/mutex.cpp
+89 −8 src/os.cpp
+3 −3 src/semaphore.cpp
+1 −1 src/sort.cpp
+2 −1 src/string.cpp
+10 −19 src/thread.cpp
+5 −83 tests/cast_test.cpp
+15 −3 tests/handle_bench.cpp
+7 −7 tests/macros_test.cpp
+278 −126 tests/math_test.cpp
+5 −1 tests/os_test.cpp
+31 −0 tests/pixelformat_test.cpp
+15 −2 tests/run_test.cpp
+1 −1 tests/string_test.cpp
+45 −18 tests/vsnprintf_test.cpp
+ tools/bin/darwin/genie
+ tools/bin/linux/genie
+ tools/bin/windows/genie.exe
1 change: 1 addition & 0 deletions cmake/bgfx/3rdparty/spirv-opt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ file(
${SPIRV_TOOLS}/source/val/validate_ray_tracing_reorder.cpp
${SPIRV_TOOLS}/source/val/validate_scopes.cpp
${SPIRV_TOOLS}/source/val/validate_small_type_uses.cpp
${SPIRV_TOOLS}/source/val/validate_tensor_layout.cpp
${SPIRV_TOOLS}/source/val/validate_type.cpp
${SPIRV_TOOLS}/source/val/validation_state.cpp
)
Expand Down
Loading