Lines Matching refs:dbgCreateInfo
766 VkDebugReportCallbackCreateInfoEXT dbgCreateInfo; in layer_debug_actions() local
767 memset(&dbgCreateInfo, 0, sizeof(dbgCreateInfo)); in layer_debug_actions()
768 dbgCreateInfo.sType = VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT; in layer_debug_actions()
769 dbgCreateInfo.flags = report_flags; in layer_debug_actions()
770 dbgCreateInfo.pfnCallback = log_callback; in layer_debug_actions()
771 dbgCreateInfo.pUserData = (void *)log_output; in layer_debug_actions()
772 …layer_create_msg_callback(report_data, default_layer_callback, &dbgCreateInfo, pAllocator, &callba… in layer_debug_actions()
779 VkDebugReportCallbackCreateInfoEXT dbgCreateInfo; in layer_debug_actions() local
780 memset(&dbgCreateInfo, 0, sizeof(dbgCreateInfo)); in layer_debug_actions()
781 dbgCreateInfo.sType = VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT; in layer_debug_actions()
782 dbgCreateInfo.flags = report_flags; in layer_debug_actions()
783 dbgCreateInfo.pfnCallback = win32_debug_output_msg; in layer_debug_actions()
784 dbgCreateInfo.pUserData = NULL; in layer_debug_actions()
785 …layer_create_msg_callback(report_data, default_layer_callback, &dbgCreateInfo, pAllocator, &callba… in layer_debug_actions()