@@ -78,6 +78,7 @@ foreach d : [
['omap', true, true],
['exynos', false, true],
['freedreno', true, ['arm', 'aarch64'].contains(host_machine.cpu_family())],
+ ['tegra', true, true],
]
driver = d[0]
require_atomics = d[1]
@@ -98,17 +99,6 @@ foreach d : [
endif
endforeach
-with_tegra = false
-_tegra = get_option('tegra')
-if _tegra == 'auto'
- with_tegra = with_atomics
-else
- with_tegra = _tegra == 'true'
-endif
-if with_tegra and not with_atomics
- error('libdrm_tegra requires atomics.')
-endif
-
with_vc4 = false
_vc4 = get_option('vc4')
if _vc4 == 'auto'
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> --- meson.build | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-)