About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/meson.options
diff options
context:
space:
mode:
authorEric Engestrom <eric@igalia.com>2025-03-26 15:45:48 +0100
committerMarge Bot <emma+marge@anholt.net>2025-03-26 21:44:26 +0000
commit7e16c1041575e8193179cb5d1667b1d1afbf26e1 (patch)
treecbbc9382e0b6382924398e4b3d6a738e85e65aad /meson.options
parenta39090921e3efad84e4eb16bc82f2d4519391a82 (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>
Diffstat (limited to 'meson.options')
-rw-r--r--meson.options8
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 ' +