Update links to .html files

This commit is contained in:
Neil Bickford 2021-01-06 18:47:13 -08:00
parent 405d56536d
commit a2b80ab819
4 changed files with 6 additions and 9 deletions

View file

@ -449,7 +449,7 @@ void main()
# Faster Path Tracer
The implementation above is recursive and this is really not optimal. As described in the [reflection](../vk_ray_tracing_reflection)
The implementation above is recursive and this is really not optimal. As described in the [reflection](../ray_tracing_reflections)
tutorial, the best is to break the recursivity and do most of the work in the `RayGen`.
The following change can give up to **3 time faster** rendering.