gfxstream: Add VK_EXT_pipeline_protected_access

Test: dEQP-VK.protected_memory.*
Test: dEQP-VK.pipeline.monolithic.image.dedicated_allocation.*
Test: dEQP-VK.api.info.get_physical_device_properties2.features.*

Reviewed-by: Aaron Ruby <aruby@qnx.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41210>
This commit is contained in:
Serdar Kocdemir 2026-04-23 14:52:47 +01:00 committed by Marge Bot
parent e301817753
commit e8773b96df
2 changed files with 6 additions and 0 deletions

View file

@ -158,6 +158,9 @@ SUPPORTED_FEATURES = [
# b/349122558 Zink
"VK_EXT_color_write_enable",
"VK_EXT_primitives_generated_query",
# Android requirements
"VK_EXT_pipeline_protected_access",
]
HOST_MODULES = ["goldfish_vk_extension_structs", "goldfish_vk_marshaling",

View file

@ -1880,6 +1880,9 @@ VkResult ResourceTracker::on_vkEnumerateDeviceExtensionProperties(
"VK_EXT_texture_compression_astc_hdr",
"VK_EXT_tooling_info",
"VK_EXT_ycbcr_2plane_444_formats",
// Android requirements
"VK_EXT_pipeline_protected_access",
};
VkEncoder* enc = (VkEncoder*)context;