From 3a124ac82a09ff02632df13db65f112ce38e215b Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Tue, 22 Apr 2025 13:49:36 +0100 Subject: [PATCH] anv: Enable VK_ANDROID_external_format_resolve Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/vulkan/anv_physical_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_physical_device.c b/src/intel/vulkan/anv_physical_device.c index ac5f63ff7b8..bdf3bdfb204 100644 --- a/src/intel/vulkan/anv_physical_device.c +++ b/src/intel/vulkan/anv_physical_device.c @@ -396,6 +396,7 @@ get_device_extensions(const struct anv_physical_device *device, if (vk_android_get_ugralloc() != NULL) { ext->ANDROID_external_memory_android_hardware_buffer = true, ext->ANDROID_native_buffer = true; + ext->ANDROID_external_format_resolve = true; } }