From c26b2d92b4c4e851c951d94d037f144513f04d65 Mon Sep 17 00:00:00 2001 From: Blake Taylor Date: Wed, 7 Jun 2023 06:49:25 -0700 Subject: [PATCH] Updating manual --- manual/tracy.tex | 2 -- 1 file changed, 2 deletions(-) diff --git a/manual/tracy.tex b/manual/tracy.tex index b2d5755f..396f9079 100644 --- a/manual/tracy.tex +++ b/manual/tracy.tex @@ -1519,8 +1519,6 @@ To mark a GPU zone use the \texttt{TracyVkZone(ctx, cmdbuf, name)} macro, where You also need to periodically collect the GPU events using the \texttt{TracyVkCollect(ctx, cmdbuf)} macro\footnote{It is considerably faster than the OpenGL's \texttt{TracyGpuCollect}.}. The provided command buffer must be in the recording state and outside a render pass instance. -For cases where you are not static linking the Vulkan loader, you can use TRACY_VK_USE_SYMBOL_TABLE to have the underlying implementation dynamically load the Vulkan symbols needed for sampling. - \subparagraph{Calibrated context} In order to maintain synchronization between CPU and GPU time domains, you will need to enable the \texttt{VK\_EXT\_calibrated\_timestamps} device extension and retrieve the following function pointers: \texttt{vkGetPhysicalDeviceCalibrateableTimeDomainsEXT} and \texttt{vkGetCalibratedTimestampsEXT}.