meson: Use include variables
[mesa.git] / meson_options.txt
index 33b40478dbf699175afb0fd22dfcad99833fb58e..894378985fdffbd90c9be3064702c9f988c39880 100644 (file)
@@ -114,6 +114,25 @@ option(
   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 : 'string',
@@ -249,3 +268,9 @@ option(
   choices : ['8', '16', '32'],
   description : 'Number of channel bits for OSMesa.'
 )
+option(
+  'swr-arches',
+  type : 'string',
+  value : 'avx,avx2',
+  description : 'Comma delemited swr architectures. choices : avx,avx2,knl,skx'
+)