X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=meson_options.txt;h=a1d5ab0e185f75668c9f536dcf88c0efdd08b32c;hb=a883fd227762bb20a83552f929213f9cf2047583;hp=28e925091980e8567b5afe11896fae5ce2cb3a14;hpb=a5abb2da74d3a892427499961aaef194d9ce1edf;p=mesa.git diff --git a/meson_options.txt b/meson_options.txt index 28e92509198..a1d5ab0e185 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', @@ -237,6 +237,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', @@ -264,12 +270,6 @@ option( value : false, description : 'Build unit tests. Currently this will build *all* unit tests, which may build more than expected.' ) -option( - 'texture-float', - type : 'boolean', - value : false, - description : 'Enable floating point textures and renderbuffers. This option may be patent encumbered, please read docs/patents.txt and consult with your lawyer before turning this on.' -) option( 'selinux', type : 'boolean', @@ -301,6 +301,20 @@ option( 'tools', type : 'array', value : [], - choices : ['freedreno', 'glsl', 'intel', 'nir', 'nouveau', 'all'], - description : 'List of tools to build.', + choices : ['freedreno', 'glsl', 'intel', 'intel-ui', 'nir', 'nouveau', 'xvmc', 'all'], + description : 'List of tools to build. (Note: `intel-ui` selects `intel`)', +) +option( + 'power8', + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], + description : 'Enable power8 optimizations.', +) +option( + 'xlib-lease', + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], + description : 'Enable VK_EXT_acquire_xlib_display.' )