mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
gfxstream: allow VK_KHR_maintenance extensions
Add latest maintenance extensions required by Android Vulkan requirements, except VK_KHR_maintenance5 which enables dynamic rendering on ANGLE and causes issues with some cuttlefish targets. Test: CI Reviewed-by: Aaron Ruby <aruby@qnx.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41210>
This commit is contained in:
parent
e8773b96df
commit
117f3cb1fc
2 changed files with 8 additions and 0 deletions
|
|
@ -161,6 +161,10 @@ SUPPORTED_FEATURES = [
|
|||
|
||||
# Android requirements
|
||||
"VK_EXT_pipeline_protected_access",
|
||||
"VK_KHR_maintenance6",
|
||||
"VK_KHR_maintenance7",
|
||||
"VK_KHR_maintenance8",
|
||||
"VK_KHR_maintenance9",
|
||||
]
|
||||
|
||||
HOST_MODULES = ["goldfish_vk_extension_structs", "goldfish_vk_marshaling",
|
||||
|
|
|
|||
|
|
@ -1883,6 +1883,10 @@ VkResult ResourceTracker::on_vkEnumerateDeviceExtensionProperties(
|
|||
|
||||
// Android requirements
|
||||
"VK_EXT_pipeline_protected_access",
|
||||
"VK_KHR_maintenance6",
|
||||
"VK_KHR_maintenance7",
|
||||
"VK_KHR_maintenance8",
|
||||
"VK_KHR_maintenance9",
|
||||
};
|
||||
|
||||
VkEncoder* enc = (VkEncoder*)context;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue