bluenoise-raytracer/ray_tracing_indirect_scissor
mlefrancois ef1c1e25d6 Fixed maxVertex value
Following specification: maxVertex is the highest index of a vertex that will be addressed by a build command using this structure.
2023-08-30 10:39:32 +02:00
..
shaders Refactoring 2021-09-07 09:42:21 +02:00
CMakeLists.txt Using buffer reference instead of un-sized array 2021-06-11 12:25:06 +02:00
hello_vulkan.cpp Fixed maxVertex value 2023-08-30 10:39:32 +02:00
hello_vulkan.h Bulk update nvpro-samples 11/16/22 2022-11-16 10:07:09 -08:00
main.cpp Bulk update nvpro-samples 05/30/23 2023-05-30 14:31:44 -07:00
README.md Bulk update NvPro-Samples 03/18/21 2021-03-18 15:00:48 -07:00

NVIDIA Vulkan Trace Rays Indirect Tutorial

This is an extension of the Vulkan ray tracing tutorial.

We will discuss the vkCmdTraceRaysIndirectKHR command, which allows the width, height, and depth of a trace ray command to be specifed by a buffer on the device, rather than directly by the host. As a demonstration, this example will add colorful lanterns to the scene that add their own light and shadows, with a finite radius of effect. A compute shader will calculate scissor rectangles for each lantern, and an indirect trace rays command will dispatch rays for lanterns only within those scissor rectangles.

LINK TO FULL TUTORIAL