venus: enable VK_EXT_device_memory_report

Signed-off-by: Yiwei Zhang <zzyiwei@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23411>
This commit is contained in:
Yiwei Zhang 2023-06-01 16:54:30 -07:00 committed by Marge Bot
parent 0960ceb071
commit 1bc4e71695
2 changed files with 10 additions and 0 deletions

View file

@ -342,6 +342,11 @@ vn_device_fix_create_info(const struct vn_device *dev,
extra_exts[extra_count++] = VK_KHR_EXTERNAL_SEMAPHORE_FD_EXTENSION_NAME;
}
if (app_exts->EXT_device_memory_report) {
/* see vn_physical_device_get_native_extensions */
block_exts[block_count++] = VK_EXT_DEVICE_MEMORY_REPORT_EXTENSION_NAME;
}
if (app_exts->EXT_physical_device_drm) {
/* see vn_physical_device_get_native_extensions */
block_exts[block_count++] = VK_EXT_PHYSICAL_DEVICE_DRM_EXTENSION_NAME;

View file

@ -1045,6 +1045,7 @@ vn_physical_device_get_native_extensions(
exts->EXT_physical_device_drm = true;
/* use common implementation */
exts->EXT_tooling_info = true;
exts->EXT_device_memory_report = true;
}
static void
@ -1807,6 +1808,10 @@ vn_GetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice,
/* clang-format on */
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_MEMORY_REPORT_FEATURES_EXT:
((VkPhysicalDeviceDeviceMemoryReportFeaturesEXT *)out)
->deviceMemoryReport = VK_TRUE;
break;
default:
break;
#undef CASE