meson: Add support for gallium extra hud
authorDylan Baker <dylan@pnwbakers.com>
Wed, 29 Nov 2017 00:31:06 +0000 (16:31 -0800)
committerDylan Baker <dylan@pnwbakers.com>
Fri, 1 Dec 2017 23:31:43 +0000 (15:31 -0800)
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
meson.build
meson_options.txt

index aa923cd472b4c23e8c40720128a9aee628e700c2..2115871931d4d5d930e963df145d088645e72883 100644 (file)
@@ -922,6 +922,10 @@ if with_platform_x11
   endif
 endif
 
+if get_option('gallium-extra-hud')
+  pre_args += '-DHAVE_GALLIUM_EXTRA_HUD=1'
+endif
+
 # TODO: nine
 
 # TODO: clover
index 44d46fe0b3249c1f00dbe879f19c15ca8f87e39a..fb1b63331ca5dad8a9c1101706de71a65598a47c 100644 (file)
@@ -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',