X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=meson_options.txt;h=b94ab3906cb2e4b58ff6f46a0ce90055051d2c5c;hb=ec994ca0fc2b853c00d9b54de7c87715ec605c2e;hp=51cf4ed6a5e060d0028ad45410c9f64092d8f8cc;hpb=1d36dc674d528b93bec3ff9637adde4ae6492452;p=mesa.git diff --git a/meson_options.txt b/meson_options.txt index 51cf4ed6a5e..b94ab3906cb 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,4 @@ -# Copyright © 2017 Intel Corporation +# Copyright © 2017-2018 Intel Corporation # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -20,9 +20,12 @@ option( 'platforms', - type : 'string', - value : 'auto', - description : 'comma separated list of window systems to support. If this is set to auto all platforms applicable to the OS will be enabled.' + type : 'array', + value : ['auto'], + choices : [ + '', 'auto', 'x11', 'wayland', 'drm', 'surfaceless', 'haiku', 'android', + ], + description : 'window systems to support. If this is set to `auto`, all platforms applicable will be enabled.' ) option( 'dri3', @@ -33,21 +36,33 @@ option( ) option( 'dri-drivers', - type : 'string', - value : 'auto', - description : 'comma separated list of dri drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' + type : 'array', + value : ['auto'], + choices : ['', 'auto', 'i915', 'i965', 'r100', 'r200', 'nouveau', 'swrast'], + description : 'List of dri drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' ) option( 'dri-drivers-path', type : 'string', value : '', - description : 'Location of dri drivers. Default: $libdir/dri.' + description : 'Location to install dri drivers. Default: $libdir/dri.' ) option( - 'gallium-drivers', + 'dri-search-path', type : 'string', - value : 'auto', - description : 'comma separated list of gallium drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' + value : '', + description : 'Locations to search for dri drivers, passed as colon separated list. Default: dri-drivers-path.' +) +option( + 'gallium-drivers', + type : 'array', + value : ['auto'], + choices : [ + '', 'auto', 'pl111', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno', + 'swrast', 'v3d', 'vc4', 'etnaviv', 'imx', 'tegra', 'i915', 'svga', 'virgl', + 'swr', + ], + description : 'List of gallium drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' ) option( 'gallium-extra-hud', @@ -85,8 +100,8 @@ option( 'gallium-omx', type : 'combo', value : 'auto', - choices : ['auto', 'true', 'false'], - description : 'enable gallium omx bellagio state tracker.', + choices : ['auto', 'disabled', 'bellagio', 'tizonia'], + description : 'enable gallium omx state tracker.', ) option( 'omx-libs-path', @@ -95,10 +110,50 @@ option( description : 'path to put omx libraries. defaults to omx-bellagio pkg-config pluginsdir.' ) option( - 'vulkan-drivers', + 'gallium-va', + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], + description : 'enable gallium va state tracker.', +) +option( + 'va-libs-path', type : 'string', + value : '', + description : 'path to put va libraries. defaults to $libdir/dri.' +) +option( + 'gallium-xa', + type : 'combo', value : 'auto', - description : 'comma separated list of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' + choices : ['auto', 'true', 'false'], + description : 'enable gallium xa state tracker.', +) +option( + 'gallium-nine', + type : 'boolean', + value : false, + description : 'build gallium "nine" Direct3D 9.x state tracker.', +) +option( + 'gallium-opencl', + type : 'combo', + choices : ['icd', 'standalone', 'disabled'], + value : 'disabled', + description : 'build gallium "clover" OpenCL state tracker.', +) +option( + 'd3d-drivers-path', + type : 'string', + value : '', + description : 'Location of D3D drivers. Default: $libdir/d3d', +) +option( + 'vulkan-drivers', + type : 'array', + value : ['auto'], + choices : ['', 'auto', 'amd', '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( 'shader-cache', @@ -169,6 +224,12 @@ option( value : true, description : 'Build assembly code if possible' ) +option( + 'glx-read-only-text', + type : 'boolean', + value : false, + description : 'Disable writable .text section on x86 (decreases performance)' +) option( 'llvm', type : 'combo', @@ -176,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', @@ -203,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', @@ -229,3 +290,31 @@ option( choices : ['8', '16', '32'], description : 'Number of channel bits for OSMesa.' ) +option( + 'swr-arches', + type : 'array', + value : ['avx', 'avx2'], + choices : ['avx', 'avx2', 'knl', 'skx'], + description : 'Architectures to build SWR support for.', +) +option( + 'tools', + type : 'array', + value : [], + choices : ['freedreno', 'glsl', 'intel', 'intel-ui', 'nir', 'nouveau', 'xvmc', 'all'], + description : 'List of tools to build.', +) +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.' +)