diff options
author | Dylan Baker <[email protected]> | 2017-11-29 17:53:54 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-01-08 16:39:37 -0800 |
commit | 425fcbde3f816e2a2efb8d1aed2442d40898d447 (patch) | |
tree | 70ecfb28652afab9df8d8edb342dce4ce1debdbd /src/gallium/targets/osmesa | |
parent | e0b037d6979b266d4959c1e31746d4d19c941fdb (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/osmesa')
-rw-r--r-- | src/gallium/targets/osmesa/meson.build | 5 |
1 files changed, 2 insertions, 3 deletions
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, |