From 2f8123abab777bb66eb50acd5972ac3f9983581f Mon Sep 17 00:00:00 2001 From: Yiwei Zhang Date: Sat, 9 Apr 2022 02:48:42 +0000 Subject: [PATCH] venus: enable ANB shared presentable image prop Signed-off-by: Yiwei Zhang Part-of: --- src/virtio/vulkan/vn_physical_device.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/virtio/vulkan/vn_physical_device.c b/src/virtio/vulkan/vn_physical_device.c index a372f4318e9..a51654489ae 100644 --- a/src/virtio/vulkan/vn_physical_device.c +++ b/src/virtio/vulkan/vn_physical_device.c @@ -2067,7 +2067,9 @@ vn_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice, } break; case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENTATION_PROPERTIES_ANDROID: - u.presentation_properties->sharedImage = VK_FALSE; + u.presentation_properties->sharedImage = + vn_android_gralloc_get_shared_present_usage() ? VK_TRUE + : VK_FALSE; break; case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROVOKING_VERTEX_PROPERTIES_EXT: *u.provoking_vertex = props->provoking_vertex;