|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
| 3 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
3 | 4 |
|
4 | 5 | <head> |
5 | 6 | <title>Path Tracing</title> |
@@ -65,7 +66,8 @@ <h2>Implementing Vulkan Path Tracing in Beyond Engine</h2> |
65 | 66 | Here's a rant for you, one of the challenges I faced during the implementation was the incomplete state of |
66 | 67 | the Vulkan ray |
67 | 68 | tracing validation layers. For instance, I encountered and reported an <a |
68 | | - href="https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/6779" target="_blank">issue on the |
| 69 | + href="https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/6779" target="_blank" |
| 70 | + rel="noopener noreferrer">issue on the |
69 | 71 | ValidationLayers |
70 | 72 | GitHub repository</a>. From my understanding, the cause of this issue was pure undefined behaviour, |
71 | 73 | where the ray tracing stack size was set randomly when it's supposed to be set dynamically but it is not |
@@ -98,8 +100,8 @@ <h2>Results and Impact</h2> |
98 | 100 | <h2>Future Work</h2> |
99 | 101 | <p>Looking ahead, I plan to integrate ReSTIR path tracing for high quality rendering at real-time frame rates. |
100 | 102 | Additionally, I |
101 | | - plan to incorporate <a href="https://developer.NVIDIA.com/rtx/ray-tracing/rt-denoisers" |
102 | | - target="_blank">NVIDIA's real-time |
| 103 | + plan to incorporate <a href="https://developer.NVIDIA.com/rtx/ray-tracing/rt-denoisers" target="_blank" |
| 104 | + rel="noopener noreferrer">NVIDIA's real-time |
103 | 105 | denoisers</a> to |
104 | 106 | further enhance the performance and quality. The ambitious target is to be able to make games using just the |
105 | 107 | path tracer.</p> |
@@ -166,7 +168,7 @@ <h2>Disscussions</h2> |
166 | 168 | footer(); |
167 | 169 | addBehaviour(); |
168 | 170 | </script> |
169 | | - <div style="text-align: center;"> |
| 171 | + <div class="text-center"> |
170 | 172 | <div>Visitor Count: <span id="visits">Loading...</span></div> |
171 | 173 | <script> |
172 | 174 | fetch('https://abacus.jasoncameron.dev/hit/karimsayedre.github.io/PathTracing.html') |
|
0 commit comments