meson: build gallium xa state tracker

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
This commit is contained in:
Dylan Baker 2017-10-30 17:40:30 -07:00
parent 5a785d51a6
commit 0ba909f0f1
5 changed files with 139 additions and 1 deletions

View File

@ -538,6 +538,28 @@ 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
with_gallium_xa = true
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')

View File

@ -107,6 +107,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',

View File

@ -131,6 +131,9 @@ endif
if with_gallium_va
subdir('state_trackers/va')
endif
if with_gallium_xa
subdir('state_trackers/xa')
endif
# TODO: SWR
# TODO: clover
if with_dri
@ -158,6 +161,8 @@ endif
if with_gallium_va
subdir('targets/va')
endif
# TODO: xa
if with_gallium_xa
subdir('targets/xa')
endif
# TODO: nine
# TODO: tests

View File

@ -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_MAJOR', xa_version[0])
xa_conf.set('XA_MINOR', xa_version[1])
xa_conf.set('XA_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')

View File

@ -0,0 +1,59 @@
# 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_link_args = []
xa_link_depends = []
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
libxatracker = shared_library(
'xatracker',
'target.c',
c_args : c_vis_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,
],
link_depends : xa_link_depends,
dependencies : [
dep_xcb, dep_x11_xcb, dep_xcb_dri2, dep_xcb_dri3, dep_libdrm,
driver_nouveau, driver_i915, driver_svga, driver_freedreno,
],
install : true,
)
pkg.generate(
name : 'xatracker',
description : 'Xorg gallium3D acceleration library',
version : '.'.join(xa_version),
libraries : libxatracker,
)