Description
Trying to capture a frame with RDP in profile capture mode but the app after few seconds freezes and the driver crashes. The problem seems to be the usage of vkQueueBeginDebugUtilsLabelEXT() and vkQueueEndDebugUtilsLabelEXT(). If I remove those two then the capture is successful. Validation layers doesn' t report any issues.
example code that causes the crash:
VkDebugUtilsLabelEXT debugLabel2{ VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT, nullptr,"Graphics Operations",{0.259f,0.506f,0.620f,1.0f} };
vkQueueBeginDebugUtilsLabelEXT(graphics_queue, &debugLabel2);
vkQueueSubmit(graphics_queue, 1, &renderSubmitInfo, inFlightFence[currentFrame]);
vkQueueEndDebugUtilsLabelEXT(graphics_queue);
Windows 10
GPU RX6900XT
Drivers tested: 23.11.1 and 23.8.2 both have the issue.