@@ -79,6 +79,7 @@ foreach d : [
['exynos', false, true],
['freedreno', true, ['arm', 'aarch64'].contains(host_machine.cpu_family())],
['tegra', true, true],
+ ['vc4', false, ['arm', 'aarch64'].contains(host_machine.cpu_family())],
]
driver = d[0]
require_atomics = d[1]
@@ -99,14 +100,6 @@ foreach d : [
endif
endforeach
-with_vc4 = false
-_vc4 = get_option('vc4')
-if _vc4 == 'auto'
- with_vc4 = ['arm', 'aarch64'].contains(host_machine.cpu_family())
-else
- with_vc4 = _vc4 == 'true'
-endif
-
with_etnaviv = false
_etnaviv = get_option('etnaviv')
if _etnaviv == 'auto'
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> --- meson.build | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-)