Home
last modified time | relevance | path

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

/third_party/mesa3d/src/vulkan/util/
Dvk_debug_report.c68 mtx_lock(&instance->debug_report.callbacks_mutex); in VK_DEFINE_NONDISP_HANDLE_CASTS()
69 list_addtail(&cb->link, &instance->debug_report.callbacks); in VK_DEFINE_NONDISP_HANDLE_CASTS()
70 mtx_unlock(&instance->debug_report.callbacks_mutex); in VK_DEFINE_NONDISP_HANDLE_CASTS()
89 mtx_lock(&instance->debug_report.callbacks_mutex); in vk_common_DestroyDebugReportCallbackEXT()
93 mtx_unlock(&instance->debug_report.callbacks_mutex); in vk_common_DestroyDebugReportCallbackEXT()
97 debug_report(struct vk_instance *instance, in debug_report() function
107 if (!instance || list_is_empty(&instance->debug_report.callbacks)) in debug_report()
110 mtx_lock(&instance->debug_report.callbacks_mutex); in debug_report()
120 &instance->debug_report.callbacks, link) { in debug_report()
126 mtx_unlock(&instance->debug_report.callbacks_mutex); in debug_report()
[all …]
Dvk_instance.c131 if (mtx_init(&instance->debug_report.callbacks_mutex, mtx_plain) != 0) in vk_instance_init()
134 list_inithead(&instance->debug_report.callbacks); in vk_instance_init()
137 mtx_destroy(&instance->debug_report.callbacks_mutex); in vk_instance_init()
169 mtx_destroy(&instance->debug_report.callbacks_mutex); in vk_instance_finish()
Dvk_instance.h58 } debug_report; member
Dvk_log.c100 likely(list_is_empty(&instance->debug_report.callbacks)))) in __vk_log_impl()
215 if (!list_is_empty(&instance->debug_report.callbacks)) { in __vk_log_impl()
/third_party/flutter/engine/flutter/vulkan/
Dvulkan_application.cc110 auto debug_report = std::make_unique<VulkanDebugReport>(vk, instance_); in VulkanApplication() local
111 if (!debug_report->IsValid()) { in VulkanApplication()
115 debug_report_ = std::move(debug_report); in VulkanApplication()
/third_party/flutter/skia/third_party/externals/imgui/examples/example_sdl_vulkan/
Dmain.cpp39 static VKAPI_ATTR VkBool32 VKAPI_CALL debug_report(VkDebugReportFlagsEXT flags, VkDebugReportObject… in debug_report() function
84 debug_report_ci.pfnCallback = debug_report; in SetupVulkan()
/third_party/flutter/skia/third_party/externals/imgui/examples/example_glfw_vulkan/
Dmain.cpp49 static VKAPI_ATTR VkBool32 VKAPI_CALL debug_report(VkDebugReportFlagsEXT flags, VkDebugReportObject… in debug_report() function
94 debug_report_ci.pfnCallback = debug_report; in SetupVulkan()
/third_party/skia/third_party/externals/imgui/examples/example_glfw_vulkan/
Dmain.cpp58 static VKAPI_ATTR VkBool32 VKAPI_CALL debug_report(VkDebugReportFlagsEXT flags, VkDebugReportObject… in debug_report() function
102 debug_report_ci.pfnCallback = debug_report; in SetupVulkan()
/third_party/skia/third_party/externals/imgui/examples/example_sdl_vulkan/
Dmain.cpp50 static VKAPI_ATTR VkBool32 VKAPI_CALL debug_report(VkDebugReportFlagsEXT flags, VkDebugReportObject… in debug_report() function
94 debug_report_ci.pfnCallback = debug_report; in SetupVulkan()
/third_party/mesa3d/docs/relnotes/
D21.1.0.rst2669 - anv: Use vk_object_base::type for debug_report
2670 - vulkan: Use vk_object_base::type for debug_report
2671 - vulkan: Make the debug_report implementation internal