Fixing links

This commit is contained in:
mklefrancois 2020-04-01 14:57:22 +02:00
parent 92f5b208f1
commit 90bebea66b
11 changed files with 19 additions and 29 deletions

View file

@ -49,7 +49,7 @@ If you are in the Beta period, install and compile all of the following
## Structure
This tutorial is a modification of [`ray_tracing__before`](https://github.com/nvpro-samples/vk_raytracing_tutorial/tree/master/ray_tracing__before), which loads are render OBJ scenes with Vulkan rasterizer.
This tutorial is a modification of [`ray_tracing__before`](https://github.com/nvpro-samples/vk_raytracing_tutorial_KHR/tree/master/ray_tracing__before), which loads are render OBJ scenes with Vulkan rasterizer.
All following instructions are based on the modification of this project.
The directory `ray_tracing__simple` is the end result of this tutorial.
@ -67,7 +67,7 @@ The directory structure should be looking like:
* |
* +-- 📂 shared_sources
* |
* +-- 📂 vk_raytracing_tutorial
* +-- 📂 vk_raytracing_tutorial_KHR
* | |
* | +-- 📂 ray_tracing__before
* | |
@ -78,7 +78,7 @@ The directory structure should be looking like:
!!! Warning
**Run CMake** in vk_raytracing_tutorial.
**Run CMake** in vk_raytracing_tutorial_KHR.
!!! Warning Beta
Modify `VULKAN > VULKAN_HEADERS_OVERRIDE_INCLUDE_DIR` to the path to beta vulkan headers.
@ -1847,7 +1847,7 @@ prd.hitValue = vec3(lightIntensity * attenuation * (diffuse + specular));
![](Images/resultRaytraceShadowMedieval.png)
The final project can be found under the [ray_tracing__simple](https://github.com/nvpro-samples/vk_raytracing_tutorial/tree/master/ray_tracing__simple) directory.
The final project can be found under the [ray_tracing__simple](https://github.com/nvpro-samples/vk_raytracing_tutorial_KHR/tree/master/ray_tracing__simple) directory.
# Going Further