meson: add svga gallium driver to 'auto' group on arm/aarch64

svga gallium driver is a good citizen on arm/aarch64 linux targets.
Enable that driver for -Dgallium-drivers=auto builds.

Reviewed-by: Charmaine Lee <charmainel@vmware.com>
Reviewed-by: Eric Engestrom <eric@igalia.com>
(cherry picked from commit 6e311dd722)

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18256>
This commit is contained in:
Martin Krastev
2022-08-19 10:25:17 +03:00
committed by Marge Bot
parent f297f05c67
commit 6f87f1996e

View File

@@ -193,7 +193,7 @@ if gallium_drivers.contains('auto')
]
elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
gallium_drivers = [
'v3d', 'vc4', 'freedreno', 'etnaviv', 'nouveau',
'v3d', 'vc4', 'freedreno', 'etnaviv', 'nouveau', 'svga',
'tegra', 'virgl', 'lima', 'panfrost', 'swrast'
]
elif ['mips', 'mips64', 'riscv32', 'riscv64'].contains(host_machine.cpu_family())