Fixing typos

This commit is contained in:
mklefrancois 2021-06-16 11:47:10 +02:00
parent c8a0122dd6
commit e557085acd

View file

@ -216,13 +216,13 @@ with utility functions for building those acceleration structures. In the header
so that we can add that helper as a member in the `HelloVulkan` class, so that we can add that helper as a member in the `HelloVulkan` class,
```` C ```` C
nvvk::RaytracingBuilder m_rtBuilder; nvvk::RaytracingBuilderKHR m_rtBuilder;
```` ````
and initialize it at the end of `initRaytracing()`: and initialize it at the end of `initRaytracing()`:
```` C ```` C
m_rtBuilder.setup(m_device, m_alloc, m_graphicsQueueIndex); m_rtBuilder.setup(m_device, &m_alloc, m_graphicsQueueIndex);
```` ````
!!! Note Memory Management !!! Note Memory Management