mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 14:38:06 +02:00
anv: Limit vulkan version to 1.1 for Android
Current Android dessert versions such as Pie, Q reject vulkan version > 1.1. Clamp the vulkan versions to 1.1 for platforms running these Android desserts. Fixes android.graphics.cts.VulkanFeaturesTest and dEQP-VK.api.info.device#properties. v2: Limit version with '!ANDROID' (Eric Engestrom and Tapani Pälli) Signed-off-by: Nataraj Deshpande <nataraj.deshpande@intel.com> Reviewed-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4781>
This commit is contained in:
parent
33c61eb2f1
commit
a77cf797f1
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ API_PATCH_VERSION = 131
|
|||
API_VERSIONS = [
|
||||
ApiVersion('1.0', True),
|
||||
ApiVersion('1.1', True),
|
||||
ApiVersion('1.2', True),
|
||||
ApiVersion('1.2', '!ANDROID'),
|
||||
]
|
||||
|
||||
MAX_API_VERSION = None # Computed later
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue