radv: Move wsi initialization later in physical_device_init
[mesa.git] / meson_options.txt
index 6c9cd33998c806696b872f1e3c9e216ab043e906..bcd63cc374f802bf79594f2c8dc849944df6edcd 100644 (file)
@@ -21,8 +21,8 @@
 option(
   'platforms',
   type : 'string',
-  value : 'x11,wayland,drm,surfaceless',
-  description : 'comma separated list of window systems to support. wayland, x11, surfaceless, drm, etc.'
+  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.'
 )
 option(
   'dri3',
@@ -55,6 +55,12 @@ option(
   value : '',
   description : 'comma separated list of gallium media APIs to build (omx,va,vdpau,xvmc).'
 )
+option(
+  'gallium-extra-hud',
+  type : 'boolean',
+  value : false,
+  description : 'Enable HUD block/NIC I/O HUD status support',
+)
 option(
   'vulkan-drivers',
   type : 'string',
@@ -132,8 +138,9 @@ option(
 )
 option(
   'llvm',
-  type : 'boolean',
-  value : true,
+  type : 'combo',
+  value : 'auto',
+  choices : ['auto', 'true', 'false'],
   description : 'Build with LLVM support.'
 )
 option(
@@ -150,6 +157,13 @@ option(
   choices : ['auto', 'true', 'false'],
   description : 'Use libunwind for stack-traces'
 )
+option(
+  'lmsensors',
+  type : 'combo',
+  value : 'auto',
+  choices : ['auto', 'true', 'false'],
+  description : 'Enable HUD lmsensors support.'
+)
 option(
   'build-tests',
   type : 'boolean',