nine: enable on freedreno

nine-tests on Adreno 630:
 ~ 10000 passing
 ~ 85 failures

Acked-by: Rob Clark <robdclark@chromium.org>
Signed-off-by: David Heidelberg <david.heidelberg@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19244>
This commit is contained in:
David Heidelberg 2022-07-16 11:35:15 +02:00 committed by Marge Bot
parent cc485cfd7c
commit 39b9067b71
2 changed files with 3 additions and 2 deletions

View File

@ -847,7 +847,8 @@ if with_gallium_st_nine
error('The nine state tracker requires gallium softpipe/llvmpipe.')
elif not (with_gallium_radeonsi or with_gallium_nouveau or with_gallium_r600
or with_gallium_r300 or with_gallium_svga or with_gallium_i915
or with_gallium_iris or with_gallium_crocus or with_gallium_zink)
or with_gallium_iris or with_gallium_crocus or with_gallium_zink
or with_gallium_freedreno)
error('The nine state tracker requires at least one non-swrast gallium driver.')
endif
if not with_dri3

View File

@ -64,7 +64,7 @@ libgallium_nine = shared_library(
dep_selinux, dep_libdrm, dep_llvm, dep_thread,
idep_xmlconfig, idep_mesautil, idep_nir,
driver_swrast, driver_r300, driver_r600, driver_radeonsi, driver_nouveau,
driver_i915, driver_svga, driver_iris, driver_crocus, driver_zink
driver_i915, driver_svga, driver_iris, driver_crocus, driver_zink, driver_freedreno
],
name_prefix : '',
version : '.'.join(nine_version),