diff options
| author | Eric Engestrom <eric@igalia.com> | 2025-03-26 15:45:48 +0100 |
|---|---|---|
| committer | Marge Bot <emma+marge@anholt.net> | 2025-03-26 21:44:26 +0000 |
| commit | 7e16c1041575e8193179cb5d1667b1d1afbf26e1 (patch) | |
| tree | cbbc9382e0b6382924398e4b3d6a738e85e65aad | |
| parent | a39090921e3efad84e4eb16bc82f2d4519391a82 (diff) | |
meson: move special value `all` out of the middle of the list
And sort the rest while at it.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34217>
| -rw-r--r-- | meson.options | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meson.options b/meson.options index a90f47c9b8e..cbeca70cf08 100644 --- a/meson.options +++ b/meson.options @@ -79,10 +79,10 @@ option( type : 'array', value : ['auto'], choices : [ - 'auto', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno', - 'v3d', 'vc4', 'etnaviv', 'tegra', 'i915', 'svga', 'virgl', - 'panfrost', 'iris', 'lima', 'zink', 'd3d12', 'asahi', 'crocus', 'all', - 'softpipe', 'llvmpipe', + 'all', 'auto', + 'asahi', 'crocus', 'd3d12', 'etnaviv', 'freedreno', 'i915', 'iris', + 'lima', 'llvmpipe', 'nouveau', 'panfrost', 'r300', 'r600', 'radeonsi', + 'softpipe', 'svga', 'tegra', 'v3d', 'vc4', 'virgl', 'zink', ], description : 'List of gallium drivers to build. If this is set to auto ' + 'all drivers applicable to the target OS/architecture ' + |