-
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
46149ee
commit 6706c1a
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule slang-rhi
updated
24 files
+2 −1 | CMakeLists.txt | |
+2 −2 | CMakePresets.json | |
+1 −1 | CONTRIBUTING.md | |
+3 −0 | include/slang-rhi.h | |
+1 −1 | include/slang-rhi/acceleration-structure-utils.h | |
+2 −0 | src/cuda/cuda-base.h | |
+102 −33 | src/cuda/cuda-command.cpp | |
+31 −60 | src/cuda/cuda-device.cpp | |
+6 −0 | src/cuda/cuda-device.h | |
+2 −7 | src/cuda/cuda-helper-functions.cpp | |
+17 −7 | src/cuda/cuda-helper-functions.h | |
+206 −4 | src/cuda/cuda-pipeline.cpp | |
+27 −1 | src/cuda/cuda-pipeline.h | |
+10 −10 | src/cuda/cuda-query.cpp | |
+12 −2 | src/cuda/cuda-shader-object.cpp | |
+9 −3 | src/cuda/cuda-shader-program.cpp | |
+14 −4 | src/cuda/cuda-shader-program.h | |
+117 −0 | src/cuda/cuda-shader-table.cpp | |
+31 −0 | src/cuda/cuda-shader-table.h | |
+12 −0 | src/vulkan/vk-api.h | |
+56 −29 | src/vulkan/vk-command.cpp | |
+21 −0 | src/vulkan/vk-device.cpp | |
+2 −0 | tests/test-ray-tracing.cpp | |
+15 −9 | tests/testing.cpp |