X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=meson_options.txt;h=5c063054ca15590eb6d088058b899ea28ab939c7;hb=63b823130dfe0be2670c83b365e7e997a1957c8b;hp=d0ab500fb2797a9a677ac84c245113c6e54e4f02;hpb=61d3ae6e0bde93c5601278d1a60c44be655a7cb5;p=mesa.git diff --git a/meson_options.txt b/meson_options.txt index d0ab500fb27..5c063054ca1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -60,7 +60,7 @@ option( choices : [ '', 'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno', 'swrast', 'v3d', 'vc4', 'etnaviv', 'tegra', 'i915', 'svga', 'virgl', - 'swr', 'panfrost' + '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', @@ -324,3 +330,28 @@ option( 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.' +)