You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: