MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / EndEvent

Method EndEvent

Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.cpp:120–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118}
119
120void CmdBufferVulkan::EndEvent()
121{
122 if (_eventsBegin == 0)
123 return;
124 _eventsBegin--;
125
126#if VK_EXT_debug_utils
127 if (vkCmdEndDebugUtilsLabelEXT)
128 vkCmdEndDebugUtilsLabelEXT(GetHandle());
129#endif
130
131#if GPU_ENABLE_TRACY
132 tracy::EndVkZoneScope(_tracyZones.Last().Data);
133 _tracyZones.RemoveLast();
134#endif
135}
136
137#endif
138

Callers 2

EventEndMethod · 0.45
EventEndMethod · 0.45

Calls 4

EndVkZoneScopeFunction · 0.85
RemoveLastMethod · 0.80
GetHandleFunction · 0.50
LastMethod · 0.45

Tested by

no test coverage detected