[Mesa-dev] [PATCH 13/13] meson: build gallium xa state tracker

Dylan Baker dylan at pnwbakers.com
Wed Nov 1 22:49:48 UTC 2017


---
 meson.build                               | 21 +++++++++
 meson_options.txt                         |  7 +++
 src/gallium/meson.build                   |  7 ++-
 src/gallium/state_trackers/xa/meson.build | 45 ++++++++++++++++++
 src/gallium/targets/xa/meson.build        | 77 +++++++++++++++++++++++++++++++
 5 files changed, 156 insertions(+), 1 deletion(-)
 create mode 100644 src/gallium/state_trackers/xa/meson.build
 create mode 100644 src/gallium/targets/xa/meson.build

diff --git a/meson.build b/meson.build
index 582ee1d45f1..15250d99145 100644
--- a/meson.build
+++ b/meson.build
@@ -449,6 +449,27 @@ if va_drivers_path == ''
   va_drivers_path = join_paths(get_option('libdir'), 'dri')
 endif
 
+_xa = get_option('gallium-xa')
+if _xa == 'auto'
+  if not ['linux', 'bsd'].contains(host_machine.system())
+    with_gallium_xa = false
+  elif not (with_gallium_nouveau or with_gallium_freedreno or with_gallium_i915
+            or with_gallium_svga)
+    with_gallium_xa = false
+  else
+    with_gallium_xa = true
+  endif
+elif _xa == 'true'
+  if not ['linux', 'bsd'].contains(host_machine.system())
+    error('XA state tracker can only be built on unix-like OSes.')
+  elif not (with_gallium_nouveau or with_gallium_freedreno or with_gallium_i915
+            or with_gallium_svga)
+    error('XA state tracker requires at least one of the following gallium drivers: nouveau, freedreno, i915, svga.')
+  endif
+else
+  with_gallium_xa = false
+endif
+
 gl_pkgconfig_c_flags = []
 if with_platform_x11
   if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
diff --git a/meson_options.txt b/meson_options.txt
index 497242cf532..98cb54bcb19 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -101,6 +101,13 @@ option(
   value : '',
   description : 'path to put va libraries. defaults to $libdir/dri.'
 )
+option(
+  'gallium-xa',
+  type : 'combo',
+  value : 'auto',
+  choices : ['auto', 'true', 'false'],
+  description : 'enable gallium xa state tracker.',
+)
 option(
   'vulkan-drivers',
   type : 'string',
diff --git a/src/gallium/meson.build b/src/gallium/meson.build
index 1dc646bf28f..a8f21e7e7c1 100644
--- a/src/gallium/meson.build
+++ b/src/gallium/meson.build
@@ -107,6 +107,9 @@ endif
 if with_gallium_va
   subdir('state_trackers/va')
 endif
+if with_gallium_xa
+  subdir('state_trackers/xa')
+endif
 # TODO: SWR
 # TODO: virgl
 # TODO: winsys/sw/xlib
@@ -129,7 +132,9 @@ endif
 if with_gallium_va
   subdir('targets/va')
 endif
+if with_gallium_xa
+  subdir('targets/xa')
+endif
 # TODO: xlib-glx
-# TODO: xa
 # TODO: nine
 # TODO: tests
diff --git a/src/gallium/state_trackers/xa/meson.build b/src/gallium/state_trackers/xa/meson.build
new file mode 100644
index 00000000000..5678221f235
--- /dev/null
+++ b/src/gallium/state_trackers/xa/meson.build
@@ -0,0 +1,45 @@
+# Copyright © 2017 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
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+
+xa_version = ['2', '3', '0']
+
+xa_conf = configuration_data()
+xa_conf.set('XA_VERSION_MAJOR', xa_version[0])
+xa_conf.set('XA_VERSION_MINOR', xa_version[1])
+xa_conf.set('XA_VERSION_PATCH', xa_version[2])
+
+xa_tracker_h = configure_file(
+  configuration : xa_conf,
+  input : 'xa_tracker.h.in',
+  output : 'xa_tracker.h',
+  install_dir : get_option('includedir'),
+)
+
+libxa_st = static_library(
+  'xa_st',
+  [xa_tracker_h, files(
+    'xa_composite.c', 'xa_context.c', 'xa_renderer.c', 'xa_tgsi.c',
+    'xa_tracker.c', 'xa_yuv.c',
+  )],
+  c_args : [c_vis_args, '-pedantic'],
+  include_directories : inc_common,
+)
+
+install_headers('xa_composite.h', 'xa_context.h')
diff --git a/src/gallium/targets/xa/meson.build b/src/gallium/targets/xa/meson.build
new file mode 100644
index 00000000000..052183a6f21
--- /dev/null
+++ b/src/gallium/targets/xa/meson.build
@@ -0,0 +1,77 @@
+# Copyright © 2017 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
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+
+# TODO: support non-static targets
+# Static targets are always enabled in autotools (unless you modify
+# configure.ac)
+
+xa_deps = []
+xa_c_args = []
+xa_link_args = []
+xa_link_with = []
+xa_link_depends = []
+
+if with_llvm
+  xa_deps += dep_llvm
+endif
+if with_ld_version_script
+  xa_link_args += ['-Wl,--version-script', join_paths(meson.current_source_dir(), 'xa.sym')]
+  xa_link_depends += files('xa.sym')
+endif
+
+if with_gallium_nouveau
+  xa_c_args += '-DGALLIUM_NOUVEAU'
+  xa_link_with += [libnouveau, libnouveauwinsys]
+  xa_deps += dep_libdrm_nouveau
+endif
+if with_gallium_i915
+  xa_c_args += '-DGALLIUM_I915'
+  xa_link_with += [libi915, libi915drm]
+  xa_deps += dep_libdrm_intel
+endif
+if with_gallium_svga
+  xa_c_args += '-DGALLIUM_VMWGFX'
+  xa_link_with += [libsvga, libsvgadrm]
+endif
+if with_gallium_freedreno
+  xa_c_args += '-DGALLIUM_FREEDRENO'
+  xa_link_with += [libfreedreno, libfreedrenowinsys]
+  xa_deps += dep_libdrm_freedreno
+endif
+
+libxatracker = shared_library(
+  'xatracker',
+  'target.c',
+  c_args : [c_vis_args, xa_c_args],
+  cpp_args : cpp_vis_args,
+  link_args : [xa_link_args, ld_args_gc_sections],
+  include_directories : [
+    inc_common, inc_util, inc_gallium_winsys, inc_gallium_drivers,
+  ],
+  link_with : [
+    libxa_st, libgalliumvl_stub, libgallium, libmesa_util, libnir,
+    libpipe_loader_static, libws_null, libwsw, xa_link_with,
+  ],
+  link_depends : xa_link_depends,
+  dependencies : [
+    dep_xcb, dep_x11_xcb, dep_xcb_dri2, dep_xcb_dri3, dep_libdrm, xa_deps,
+  ],
+  install : true,
+)
-- 
2.14.3



More information about the mesa-dev mailing list