X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=meson_options.txt;h=4428745bef7d779c21e0d00f1a860dfd1821132f;hb=a54c231b56005f172cbd744fb7c592922b077526;hp=b94ab3906cb2e4b58ff6f46a0ce90055051d2c5c;hpb=8629d807aae1319843e52618b82d9a0a1ae584e8;p=mesa.git diff --git a/meson_options.txt b/meson_options.txt index b94ab3906cb..4428745bef7 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -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', 'lima' ], 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', @@ -270,6 +276,12 @@ option( value : false, description : 'Build unit tests. Currently this will build *all* unit tests, which may build more than expected.' ) +option( + 'install-intel-gpu-tests', + type : 'boolean', + value : false, + description : 'Build and install Intel unit tests which require the GPU. This option is for developers and the Intel CI system only.' +) option( 'selinux', type : 'boolean', @@ -301,8 +313,8 @@ option( 'tools', type : 'array', value : [], - choices : ['freedreno', 'glsl', 'intel', 'intel-ui', 'nir', 'nouveau', 'xvmc', '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', @@ -318,3 +330,34 @@ 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.' +) +option( + 'platform-sdk-version', + type : 'integer', + min : 25, + max : 28, + value : 25, + description : 'Android Platform SDK version. Default: Nougat version.' +)