| 118 | } |
| 119 | |
| 120 | void 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 |
no test coverage detected