diff options
author | Kenneth Graunke <[email protected]> | 2019-12-05 15:30:26 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-12-06 12:27:26 -0800 |
commit | ab016a6a2d657d85f18741ba36261182db598c8f (patch) | |
tree | 4650e3770c58514e88f0e15d53c5292926205af2 /meson.build | |
parent | f9a3d9738b12883e268b81731f8e231df3e376c3 (diff) |
meson: Include iris in default gallium-drivers for x86/x86_64
We build i965 by default on x86/x86_64 platforms; let's build iris too.
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 92e45d28640..5b488313309 100644 --- a/meson.build +++ b/meson.build @@ -166,7 +166,8 @@ if gallium_drivers.contains('auto') # TODO: PPC, Sparc if ['x86', 'x86_64'].contains(host_machine.cpu_family()) gallium_drivers = [ - 'r300', 'r600', 'radeonsi', 'nouveau', 'virgl', 'svga', 'swrast' + 'r300', 'r600', 'radeonsi', 'nouveau', 'virgl', 'svga', 'swrast', + 'iris' ] elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) gallium_drivers = [ |