Home
last modified time | relevance | path

Searched refs:debugReportInfo (Results 1 – 1 of 1) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DRendererVk.cpp868 VkDebugReportCallbackCreateInfoEXT debugReportInfo = {}; in initialize() local
870 debugReportInfo.sType = VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT; in initialize()
871 debugReportInfo.flags = VK_DEBUG_REPORT_ERROR_BIT_EXT | VK_DEBUG_REPORT_WARNING_BIT_EXT; in initialize()
872 debugReportInfo.pfnCallback = &DebugReportCallback; in initialize()
873 debugReportInfo.pUserData = this; in initialize()
875 ANGLE_VK_TRY(displayVk, vkCreateDebugReportCallbackEXT(mInstance, &debugReportInfo, nullptr, in initialize()