summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/libgl-xlib/meson.build
diff options
context:
space:
mode:
authorDylan Baker <[email protected]>2017-11-29 17:53:54 -0800
committerDylan Baker <[email protected]>2018-01-08 16:39:37 -0800
commit425fcbde3f816e2a2efb8d1aed2442d40898d447 (patch)
tree70ecfb28652afab9df8d8edb342dce4ce1debdbd /src/gallium/targets/libgl-xlib/meson.build
parente0b037d6979b266d4959c1e31746d4d19c941fdb (diff)
meson: Turn on swr for relevant targets
Currently that's dri, libgl-xlib, and osmesa. v2: - put drivers on a separate line from normal dependencies (Eric E) cc: George Kyriazis <[email protected]> cc: Tim Rowley <[email protected]> cc: Bruce Cherniak <[email protected]> Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gallium/targets/libgl-xlib/meson.build')
-rw-r--r--src/gallium/targets/libgl-xlib/meson.build4
1 files changed, 2 insertions, 2 deletions
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',