[Mesa-dev] [PATCH v3 2/4] meson: Turn on swr for relevant targets
Dylan Baker
dylan at pnwbakers.com
Fri Dec 15 18:54:17 UTC 2017
Currently that's dri, libgl-xlib, and osmesa.
v2: - put drivers on a separate line from normal dependencies (Eric E)
cc: George Kyriazis <george.kyriazis at intel.com>
cc: Tim Rowley <timothy.o.rowley at intel.com>
cc: Bruce Cherniak <bruce.cherniak at intel.com>
Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>
---
George, Tim, and Bruce,
I don't know if you guys have any time or desire to test this or the previous
patch, it currently only works on Linux, but windows support will be coming
afterwards.
src/gallium/meson.build | 1 -
src/gallium/targets/dri/meson.build | 4 ++--
src/gallium/targets/libgl-xlib/meson.build | 4 ++--
src/gallium/targets/osmesa/meson.build | 5 ++---
4 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/src/gallium/meson.build b/src/gallium/meson.build
index 3e2fd095710..fc21dcf03e1 100644
--- a/src/gallium/meson.build
+++ b/src/gallium/meson.build
@@ -145,7 +145,6 @@ endif
if with_gallium_st_nine
subdir('state_trackers/nine')
endif
-# TODO: SWR
# TODO: clover
if with_dri
subdir('state_trackers/dri')
diff --git a/src/gallium/targets/dri/meson.build b/src/gallium/targets/dri/meson.build
index 5ca7b015d91..edf8d67fe39 100644
--- a/src/gallium/targets/dri/meson.build
+++ b/src/gallium/targets/dri/meson.build
@@ -69,7 +69,7 @@ libgallium_dri = shared_library(
dep_selinux, dep_expat, dep_libdrm, dep_llvm, dep_lmsensors, dep_thread,
driver_swrast, driver_r300, driver_r600, driver_radeonsi, driver_nouveau,
driver_pl111, driver_vc4, driver_vc5, driver_freedreno, driver_etnaviv,
- driver_imx, driver_i915, driver_svga, driver_virgl,
+ driver_imx, driver_i915, driver_svga, driver_virgl, driver_swr,
],
)
@@ -77,7 +77,7 @@ foreach d : [[with_gallium_pl111, 'pl111_dri.so'],
[with_gallium_radeonsi, 'radeonsi_dri.so'],
[with_gallium_nouveau, 'nouveau_dri.so'],
[with_gallium_freedreno, ['msm_dri.so', 'kgsl_dri.so']],
- [with_gallium_softpipe, 'swrast_dri.so'],
+ [with_gallium_softpipe or with_gallium_swr, 'swrast_dri.so'],
[with_gallium_softpipe and with_gallium_drisw_kms, 'kms_swrast_dri.so'],
[with_gallium_vc4, 'vc4_dri.so'],
[with_gallium_vc5, 'vc5_dri.so'],
diff --git a/src/gallium/targets/libgl-xlib/meson.build b/src/gallium/targets/libgl-xlib/meson.build
index c413a25bd66..6c8d2b4bc0e 100644
--- a/src/gallium/targets/libgl-xlib/meson.build
+++ b/src/gallium/targets/libgl-xlib/meson.build
@@ -38,7 +38,6 @@ endif
if with_shared_glapi
gallium_xlib_link_with += libglapi
endif
-# TODO: SWR
libgl = shared_library(
'GL',
@@ -55,7 +54,8 @@ libgl = shared_library(
libgallium, libmesa_util, libmesa_gallium, gallium_xlib_link_with,
],
dependencies : [
- dep_thread, dep_clock, dep_unwind, dep_lmsensors, driver_swrast,
+ dep_thread, dep_clock, dep_unwind, dep_lmsensors,
+ driver_swrast, driver_swr,
],
install : true,
version : '1.5.0',
diff --git a/src/gallium/targets/osmesa/meson.build b/src/gallium/targets/osmesa/meson.build
index cbf0e3d096a..e51c54f8bc4 100644
--- a/src/gallium/targets/osmesa/meson.build
+++ b/src/gallium/targets/osmesa/meson.build
@@ -32,8 +32,6 @@ if with_ld_version_script
osmesa_link_deps += files('osmesa.sym')
endif
-# TODO: swr
-
libosmesa = shared_library(
osmesa_lib_name,
'target.c',
@@ -51,7 +49,8 @@ libosmesa = shared_library(
osmesa_link_with,
],
dependencies : [
- dep_selinux, dep_thread, dep_clock, dep_unwind, driver_swrast,
+ dep_selinux, dep_thread, dep_clock, dep_unwind,
+ driver_swrast, driver_swr,
],
version : '8.0.0',
install : true,
--
2.15.1
More information about the mesa-dev
mailing list