mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 07:20:10 +01:00
intel: Limit Intel Vulkan RT to x86_64
Note: passed CI repeatedly except for the timing out WHL jobs. Fixes:28c1053c07("intel: Allow using intel_clc from the system") (cherry picked from commitc38b67f4d1) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25228>
This commit is contained in:
parent
d38b06ac14
commit
882608de2c
1 changed files with 2 additions and 1 deletions
|
|
@ -252,10 +252,11 @@ with_any_broadcom = [
|
|||
|
||||
if ['x86_64'].contains(host_machine.cpu_family())
|
||||
with_intel_clc = get_option('intel-clc') == 'enabled'
|
||||
with_intel_vk_rt = with_intel_vk and get_option('intel-clc') != 'disabled'
|
||||
else
|
||||
with_intel_clc = false
|
||||
with_intel_vk_rt = false
|
||||
endif
|
||||
with_intel_vk_rt = with_intel_vk and get_option('intel-clc') != 'disabled'
|
||||
|
||||
with_any_intel = [
|
||||
with_gallium_crocus,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue