mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 04:00:10 +01:00
meson: Fix with_intel_vk and with_amd_vk variables
Fixes: 5608d0a2ce "meson: use array type options"
Cc: Dylan Baker <dylan@pnwbakers.com>
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
This commit is contained in:
parent
77554d220d
commit
b0c5774027
1 changed files with 2 additions and 2 deletions
|
|
@ -213,8 +213,8 @@ if _vulkan_drivers.contains('auto')
|
|||
endif
|
||||
endif
|
||||
if _vulkan_drivers != ['']
|
||||
with_intel_vk = _drivers.contains('intel')
|
||||
with_amd_vk = _drivers.contains('amd')
|
||||
with_intel_vk = _vulkan_drivers.contains('intel')
|
||||
with_amd_vk = _vulkan_drivers.contains('amd')
|
||||
with_any_vk = true
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue