X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=meson_options.txt;h=45faa341e79dd7d8b05baab771a3ab383ad32f0c;hb=b30aad552cde507a70c6bf3bc2ce40ed69e0ecf2;hp=5de73536bf7dfa64fb0f6834990b7906274c184b;hpb=7ab1fffcd2a504024b16e408de329f7a94553ecc;p=mesa.git diff --git a/meson_options.txt b/meson_options.txt index 5de73536bf7..45faa341e79 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -25,7 +25,7 @@ option( choices : [ '', 'auto', 'x11', 'wayland', 'drm', 'surfaceless', 'haiku', 'android', ], - description : 'comma separated list of window systems to support. If this is set to auto all platforms applicable to the OS will be enabled.' + description : 'window systems to support. If this is set to `auto`, all platforms applicable will be enabled.' ) option( 'dri3', @@ -58,9 +58,9 @@ option( type : 'array', value : ['auto'], choices : [ - '', 'auto', 'pl111', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno', - 'swrast', 'v3d', 'vc4', 'etnaviv', 'imx', 'tegra', 'i915', 'svga', 'virgl', - 'swr', + '', 'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno', + 'swrast', 'v3d', 'vc4', 'etnaviv', 'tegra', 'i915', 'svga', 'virgl', + 'swr', 'panfrost', 'iris' ], description : 'List of gallium drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' ) @@ -152,7 +152,7 @@ option( 'vulkan-drivers', type : 'array', value : ['auto'], - choices : ['', 'auto', 'amd', 'intel'], + choices : ['', 'auto', 'amd', 'freedreno', 'intel'], description : 'List of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' ) option( @@ -167,6 +167,12 @@ option( value : '', description : 'Location relative to prefix to put vulkan icds on install. Default: $datadir/vulkan/icd.d' ) +option( + 'vulkan-overlay-layer', + type : 'boolean', + value : false, + description : 'Whether to build the vulkan overlay layer' +) option( 'shared-glapi', type : 'boolean', @@ -237,6 +243,12 @@ option( choices : ['auto', 'true', 'false'], description : 'Build with LLVM support.' ) +option( + 'shared-llvm', + type : 'boolean', + value : true, + description : 'Whether to link llvm shared or statically.' +) option( 'valgrind', type : 'combo', @@ -295,8 +307,8 @@ option( 'tools', type : 'array', value : [], - choices : ['freedreno', 'glsl', 'intel', 'nir', 'nouveau', 'all'], - description : 'List of tools to build.', + choices : ['etnaviv', 'freedreno', 'glsl', 'intel', 'intel-ui', 'nir', 'nouveau', 'xvmc', 'all'], + description : 'List of tools to build. (Note: `intel-ui` selects `intel`)', ) option( 'power8', @@ -312,3 +324,26 @@ option( choices : ['auto', 'true', 'false'], description : 'Enable VK_EXT_acquire_xlib_display.' ) +option( + 'glx-direct', + type : 'boolean', + value : true, + description : 'Enable direct rendering in GLX and EGL for DRI', +) +option( + 'I-love-half-baked-turnips', + type : 'boolean', + value : false, + description : 'Allow work-in-progress freedreno vulkan driver to be enabled', +) +option('egl-lib-suffix', + type : 'string', + value : '', + description : 'Suffix to append to EGL library name. Default: none.' +) +option( + 'gles-lib-suffix', + type : 'string', + value : '', + description : 'Suffix to append to GLES library names. Default: none.' +)