-
-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/2.19.0' into ci/feature/2.19.0/vulkan_loader_bins
- Loading branch information
Showing
17 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
Submodule ANGLE
updated
from 803c3b to 24dabd
Submodule Assimp
updated
1210 files
Submodule GLFW
updated
34 files
+5 −4 | .github/workflows/build.yml | |
+1 −3 | CMakeLists.txt | |
+5 −0 | CONTRIBUTORS.md | |
+7 −68 | README.md | |
+0 −38 | docs/Doxyfile.in | |
+1 −1 | docs/build.dox | |
+3 −3 | docs/compat.dox | |
+6 −5 | docs/compile.dox | |
+3 −3 | docs/context.dox | |
+2 −2 | docs/input.dox | |
+7 −7 | docs/intro.dox | |
+2 −2 | docs/monitor.dox | |
+3 −3 | docs/moving.dox | |
+13 −0 | docs/news.dox | |
+1 −5 | docs/quick.dox | |
+1 −1 | docs/vulkan.dox | |
+2 −1 | docs/window.dox | |
+1 −1 | include/GLFW/glfw3.h | |
+9 −3 | include/GLFW/glfw3native.h | |
+17 −10 | src/context.c | |
+67 −29 | src/egl_context.c | |
+4 −0 | src/glx_context.c | |
+0 −1 | src/glx_context.h | |
+1 −1 | src/linux_joystick.c | |
+5 −17 | src/wgl_context.c | |
+2 −0 | src/win32_platform.h | |
+100 −78 | src/win32_window.c | |
+51 −40 | src/wl_init.c | |
+8 −6 | src/wl_monitor.c | |
+24 −22 | src/wl_platform.h | |
+267 −271 | src/wl_window.c | |
+80 −19 | src/x11_window.c | |
+1 −1 | tests/events.c | |
+26 −0 | tests/glfwinfo.c |
Submodule MoltenVK
updated
65 files
Submodule SDL
updated
20 files
+1 −1 | CMakeLists.txt | |
+1 −1 | Makefile.os2 | |
+1 −1 | Makefile.w32 | |
+2 −2 | Xcode/SDL/Info-Framework.plist | |
+6 −6 | Xcode/SDL/SDL.xcodeproj/project.pbxproj | |
+1 −1 | Xcode/SDL/pkg-support/SDL.info | |
+1 −1 | android-project/app/src/main/java/org/libsdl/app/SDLActivity.java | |
+1 −1 | configure | |
+1 −1 | configure.ac | |
+1 −1 | include/SDL_version.h | |
+3 −2 | src/file/SDL_rwops.c | |
+8 −1 | src/joystick/SDL_gamecontroller.c | |
+1 −0 | src/joystick/SDL_gamecontrollerdb.h | |
+2 −2 | src/joystick/SDL_joystick.c | |
+2 −0 | src/joystick/hidapi/SDL_hidapi_nintendo.h | |
+69 −53 | src/joystick/hidapi/SDL_hidapi_switch.c | |
+4 −4 | src/main/windows/version.rc | |
+8 −0 | src/video/SDL_pixels.c | |
+3 −0 | src/video/wayland/SDL_waylandsym.h | |
+1 −0 | src/video/windows/SDL_windowsmouse.c |
Submodule SPIRV-Cross
updated
392 files
Submodule SPIRV-Headers
updated
13 files
+13 −0 | SECURITY.md | |
+13 −10 | include/spirv/unified1/spirv.bf | |
+36 −17 | include/spirv/unified1/spirv.core.grammar.json | |
+13 −10 | include/spirv/unified1/spirv.cs | |
+13 −10 | include/spirv/unified1/spirv.h | |
+13 −10 | include/spirv/unified1/spirv.hpp | |
+13 −10 | include/spirv/unified1/spirv.hpp11 | |
+9 −6 | include/spirv/unified1/spirv.json | |
+13 −10 | include/spirv/unified1/spirv.lua | |
+13 −10 | include/spirv/unified1/spirv.py | |
+13 −10 | include/spirv/unified1/spv.d | |
+2 −0 | tools/buildHeaders/bin/makeHeaders | |
+2 −0 | tools/buildHeaders/jsonToSpirv.cpp |
Submodule SPIRV-Reflect
updated
58 files
Submodule SPIRV-Tools
updated
98 files
Submodule Vulkan-Headers
updated
72 files
Submodule Vulkan-Loader
updated
69 files
Submodule shaderc
updated
12 files
+12 −5 | CHANGES | |
+6 −16 | CMakeLists.txt | |
+6 −6 | DEPS | |
+1 −1 | README.md | |
+2 −2 | kokoro/android-release/build-docker.sh | |
+1 −1 | kokoro/linux/build-docker.sh | |
+16 −0 | kokoro/linux/presubmit_mingw_release.cfg | |
+1 −1 | kokoro/macos/build.sh | |
+1 −1 | kokoro/ndk-build/build-docker.sh | |
+1 −1 | kokoro/windows/build.bat | |
+10 −0 | third_party/CMakeLists.txt | |
+1 −1 | utils/update_build_version.py |
Submodule wgpu-native
updated
18 files
+19 −1 | .github/workflows/ci.yml | |
+1 −1 | .gitignore | |
+177 −128 | Cargo.lock | |
+6 −6 | Cargo.toml | |
+12 −0 | Makefile | |
+3 −0 | examples/CMakeLists.txt | |
+33 −4 | examples/framework/framework.c | |
+14 −0 | examples/framework/framework.h | |
+27 −0 | examples/texture_arrays/CMakeLists.txt | |
+61 −0 | examples/texture_arrays/indexing.wgsl | |
+786 −0 | examples/texture_arrays/main.c | |
+33 −0 | examples/texture_arrays/non_uniform_indexing.wgsl | |
+1 −1 | ffi/webgpu-headers | |
+28 −0 | ffi/wgpu.h | |
+230 −7 | src/conv.rs | |
+98 −154 | src/lib.rs | |
+0 −15 | src/unimplemented.rs | |
+59 −1 | src/utils.rs |
Binary file modified
BIN
-25.5 KB
(96%)
src/Native/Silk.NET.Vulkan.Loader.Native/runtimes/win-x64/native/vulkan-1.dll
Binary file not shown.
Binary file modified
BIN
-25.5 KB
(96%)
src/Native/Silk.NET.Vulkan.Loader.Native/runtimes/win-x86/native/vulkan-1.dll
Binary file not shown.