diff options
Diffstat (limited to 'tools/gfx/vulkan/render-vk.cpp')
| -rw-r--r-- | tools/gfx/vulkan/render-vk.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/gfx/vulkan/render-vk.cpp b/tools/gfx/vulkan/render-vk.cpp index 9f5af2a1e..f31195cc8 100644 --- a/tools/gfx/vulkan/render-vk.cpp +++ b/tools/gfx/vulkan/render-vk.cpp @@ -5117,12 +5117,14 @@ public: } virtual SLANG_NO_THROW void SLANG_MCALL dispatchRays( - const char* rayGenShaderName, + uint32_t raygenShaderIndex, + IShaderTable* shaderTable, int32_t width, int32_t height, int32_t depth) override { - SLANG_UNUSED(rayGenShaderName); + SLANG_UNUSED(raygenShaderIndex); + SLANG_UNUSED(shaderTable); SLANG_UNUSED(width); SLANG_UNUSED(height); SLANG_UNUSED(depth); |
