Module: Mesa Branch: main Commit: 43eab9252ee7e27bb226669686ba1c121bec1f40 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=43eab9252ee7e27bb226669686ba1c121bec1f40
Author: Eric Engestrom <[email protected]> Date: Thu Nov 24 10:27:57 2022 +0000 meson: sort drivers alphabetically in any-of checks Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19977> --- meson.build | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/meson.build b/meson.build index b4fb5bc99d2..1e6ccd8cbb9 100644 --- a/meson.build +++ b/meson.build @@ -236,13 +236,13 @@ endforeach with_gallium = gallium_drivers.length() != 0 with_gallium_kmsro = system_has_kms_drm and [ - with_gallium_v3d, - with_gallium_vc4, + with_gallium_asahi, with_gallium_etnaviv, - with_gallium_panfrost, - with_gallium_lima, with_gallium_freedreno, - with_gallium_asahi, + with_gallium_lima, + with_gallium_panfrost, + with_gallium_v3d, + with_gallium_vc4, ].contains(true) with_dri = false @@ -670,11 +670,11 @@ elif not with_platform_x11 _vdpau = 'disabled' endif elif not [ + with_gallium_d3d12_video, + with_gallium_nouveau, with_gallium_r300, with_gallium_r600, with_gallium_radeonsi, - with_gallium_nouveau, - with_gallium_d3d12_video, ].contains(true) if _vdpau == 'enabled' error('VDPAU state tracker requires at least one of the following gallium drivers: r300, r600, radeonsi, nouveau, d3d12 (with option gallium-d3d12-video).') @@ -799,10 +799,10 @@ elif _va == 'false' warning('gallium-va option "false" deprecated, please use "disabled" instead.') endif if not [ + with_gallium_d3d12_video, + with_gallium_nouveau, with_gallium_r600, with_gallium_radeonsi, - with_gallium_nouveau, - with_gallium_d3d12_video, with_gallium_virgl, ].contains(true) if _va == 'enabled' @@ -868,16 +868,16 @@ if with_gallium_st_nine if not with_gallium_softpipe error('The nine state tracker requires gallium softpipe/llvmpipe.') elif not [ - with_gallium_radeonsi, + with_gallium_crocus, + with_gallium_freedreno, + with_gallium_i915, + with_gallium_iris, with_gallium_nouveau, - with_gallium_r600, with_gallium_r300, + with_gallium_r600, + with_gallium_radeonsi, with_gallium_svga, - with_gallium_i915, - with_gallium_iris, - with_gallium_crocus, with_gallium_zink, - with_gallium_freedreno, ].contains(true) error('The nine state tracker requires at least one non-swrast gallium driver.') endif
