| 265 | #if VK_EXT_debug_utils |
| 266 | |
| 267 | void GraphContext::doBeginDebugUtilsLabel( VkCommandBuffer commandBuffer |
| 268 | , VkDebugUtilsLabelEXT const & labelInfo )const |
| 269 | { |
| 270 | if ( vkCmdBeginDebugUtilsLabelEXT ) |
| 271 | { |
| 272 | vkCmdBeginDebugUtilsLabelEXT( commandBuffer, &labelInfo ); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | void GraphContext::doEndDebugUtilsLabel( VkCommandBuffer commandBuffer )const |
| 277 | { |
nothing calls this directly
no outgoing calls
no test coverage detected