-
Notifications
You must be signed in to change notification settings - Fork 245
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
d12d1e9
commit 6b23dd4
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule slang-rhi
updated
29 files
+4 −22 | .github/workflows/ci.yml | |
+34 −80 | CMakeLists.txt | |
+4 −20 | include/slang-rhi.h | |
+5 −5 | include/slang-rhi/shader-cursor.h | |
+1 −1 | src/core/blob.h | |
+6 −6 | src/core/com-object.h | |
+3 −3 | src/core/string.h | |
+120 −0 | src/d3d/d3d-util.cpp | |
+48 −0 | src/d3d/d3d-util.h | |
+0 −118 | src/d3d12/d3d12-acceleration-structure.cpp | |
+0 −47 | src/d3d12/d3d12-acceleration-structure.h | |
+1 −1 | src/d3d12/d3d12-command-encoder.cpp | |
+1 −1 | src/d3d12/d3d12-device.cpp | |
+112 −111 | src/enum-strings.cpp | |
+4 −66 | src/resource-desc-utils.cpp | |
+1 −1 | src/rhi-shared.h | |
+1 −1 | src/rhi.cpp | |
+0 −168 | src/strings.h | |
+0 −132 | src/vulkan/vk-acceleration-structure.cpp | |
+0 −49 | src/vulkan/vk-acceleration-structure.h | |
+131 −0 | src/vulkan/vk-util.cpp | |
+49 −0 | src/vulkan/vk-util.h | |
+0 −1 | src/wgpu/wgpu-buffer.cpp | |
+1 −13 | src/wgpu/wgpu-device.cpp | |
+0 −4 | src/wgpu/wgpu-device.h | |
+1 −3 | src/wgpu/wgpu-shader-object-layout.cpp | |
+104 −43 | src/wgpu/wgpu-shader-object.cpp | |
+18 −6 | src/wgpu/wgpu-shader-object.h | |
+0 −5 | src/wgpu/wgpu-shader-program.cpp |