mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 15:40:46 +02:00
radv: consider MESA_VK_VERSION_OVERRIDE when setting the api version
Before setting the physical device API version, we should check if the MESA_VK_VERSION_OVERRIDE environment variable is set and take it into account. Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
9dcf90d7ba
commit
bb953de96c
1 changed files with 5 additions and 2 deletions
|
|
@ -335,9 +335,12 @@ VkResult radv_EnumerateInstanceVersion(
|
|||
uint32_t
|
||||
radv_physical_device_api_version(struct radv_physical_device *dev)
|
||||
{
|
||||
uint32_t override = vk_get_version_override();
|
||||
uint32_t version = VK_MAKE_VERSION(1, 0, 68);
|
||||
if (dev->rad_info.has_syncobj_wait_for_submit)
|
||||
return ${MAX_API_VERSION.c_vk_version()};
|
||||
return VK_MAKE_VERSION(1, 0, 68);
|
||||
version = ${MAX_API_VERSION.c_vk_version()};
|
||||
|
||||
return override ? MIN2(override, version) : version;
|
||||
}
|
||||
""")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue