Skip to content

Commit

Permalink
Comment out debug break for now
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Oct 23, 2024
1 parent b8a6bd7 commit 4c82278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/backends/vulkan/kinc/backend/graphics5/Vulkan.c.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static VkBool32 vkDebugUtilsMessengerCallbackEXT(VkDebugUtilsMessageSeverityFlag
const VkDebugUtilsMessengerCallbackDataEXT *pCallbackData, void *pUserData) {
if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT) {
kinc_log(KINC_LOG_LEVEL_ERROR, "Vulkan ERROR: Code %d : %s", pCallbackData->messageIdNumber, pCallbackData->pMessage);
kinc_debug_break();
// kinc_debug_break();
}
else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT) {
kinc_log(KINC_LOG_LEVEL_WARNING, "Vulkan WARNING: Code %d : %s", pCallbackData->messageIdNumber, pCallbackData->pMessage);
Expand Down

0 comments on commit 4c82278

Please sign in to comment.