-------------------------------------------------------------------------
| 2495 | } |
| 2496 | //------------------------------------------------------------------------- |
| 2497 | void VulkanRenderSystem::debugAnnotationPop() |
| 2498 | { |
| 2499 | #if OGRE_DEBUG_MODE >= OGRE_DEBUG_MEDIUM |
| 2500 | if( !CmdEndDebugUtilsLabelEXT ) |
| 2501 | return; // VK_EXT_debug_utils not available |
| 2502 | VkCommandBuffer cmdBuffer = mActiveDevice->mGraphicsQueue.mCurrentCmdBuffer; |
| 2503 | CmdEndDebugUtilsLabelEXT( cmdBuffer ); |
| 2504 | #endif |
| 2505 | } |
| 2506 | //------------------------------------------------------------------------- |
| 2507 | void VulkanRenderSystem::initGPUProfiling() {} |
| 2508 | //------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected