diff options
author | Eric Engestrom <[email protected]> | 2019-07-22 15:55:06 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-08-03 00:08:37 +0000 |
commit | b558fa4dfed2adea664552ddca6a86b6d66b62a8 (patch) | |
tree | a2df3b09e005fc492b9071da60c629873a97eea3 /src/gallium/targets/pipe-loader | |
parent | 9a07606b84ec124232f3daddb15e169cc395bf91 (diff) |
meson: remove unused field
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Eric Anholt <[email protected]>
Tested-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader')
-rw-r--r-- | src/gallium/targets/pipe-loader/meson.build | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gallium/targets/pipe-loader/meson.build b/src/gallium/targets/pipe-loader/meson.build index 614cad6cecd..403fbcc09c0 100644 --- a/src/gallium/targets/pipe-loader/meson.build +++ b/src/gallium/targets/pipe-loader/meson.build @@ -48,21 +48,21 @@ endif pipe_loader_install_dir = join_paths(get_option('libdir'), 'gallium-pipe') pipe_loaders = [ - [with_gallium_i915, 'i915', driver_i915, [], []], - [with_gallium_nouveau, 'nouveau', driver_nouveau, [], []], - [with_gallium_r300, 'r300', driver_r300, [], []], - [with_gallium_r600, 'r600', driver_r600, [], []], - [with_gallium_radeonsi, 'radeonsi', [driver_radeonsi, idep_xmlconfig], [], []], - [with_gallium_freedreno, 'msm', driver_freedreno, [], []], - [with_gallium_svga, 'vmwgfx', driver_svga, [], []], - [with_gallium_softpipe, 'swrast', [driver_swrast, driver_swr], [libwsw, libws_null], []], + [with_gallium_i915, 'i915', driver_i915, []], + [with_gallium_nouveau, 'nouveau', driver_nouveau, []], + [with_gallium_r300, 'r300', driver_r300, []], + [with_gallium_r600, 'r600', driver_r600, []], + [with_gallium_radeonsi, 'radeonsi', [driver_radeonsi, idep_xmlconfig], []], + [with_gallium_freedreno, 'msm', driver_freedreno, []], + [with_gallium_svga, 'vmwgfx', driver_svga, []], + [with_gallium_softpipe, 'swrast', [driver_swrast, driver_swr], [libwsw, libws_null]], ] foreach x : pipe_loaders if x[0] shared_library( 'pipe_@0@'.format(x[1]), - ['pipe_@[email protected]'.format(x[1]), x[4]], + 'pipe_@[email protected]'.format(x[1]), c_args : [pipe_loader_comp_args, c_vis_args], cpp_args : [pipe_loader_comp_args, cpp_vis_args], link_args : pipe_loader_link_args, |