CUDA Ray-Tracing
----------------

In this demo, your task is to implement shadow rays into the ray-tracing application using CUDA.

-) Go to "VS2010", and open the "CUDART_VS2010.sln" file.
-) Build the solution (should build without problems in VS 2010)
-) Upon starting the program, you should see a ray-traced scene without any shadows.
-) A small menu can be opened with the right mouse button: Toggling to "With shadows" will not display shadows at this time - this needs to be implemented.


Task: Implement shadow rays in the following function:
static __device__ inline uint32_t shadow_kdtree(const ray_t &ray, float t_min, float t_max)

-) The source file for ray-tracing can be found in "Source/rt_cuda_kernel.cu"
-) Your task is to implement the tracing of shadow rays in the abovementioned function
-) If implemented properly, switching to "With shadows" in the menu should now show shadows as well