diff options
author | Mathias Fröhlich <[email protected]> | 2018-03-25 19:16:54 +0200 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2018-03-31 06:32:14 +0200 |
commit | 6e9f00e3fc6f3b1331031f0995254c768d38ea81 (patch) | |
tree | 41db2a496029ecc3b4a57d798d8d63c7c8b26614 /src/mesa/meson.build | |
parent | 245f9a3977dcc097ded07c535b589b82191d5e94 (diff) |
vbo: Move vbo_split into the tnl module.
Move the files, adapt to the naming scheme in tnl, update callers
and build system.
Reviewed-by: Brian Paul <[email protected]>
Signed-off-by: Mathias Fröhlich <[email protected]>
Diffstat (limited to 'src/mesa/meson.build')
-rw-r--r-- | src/mesa/meson.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/meson.build b/src/mesa/meson.build index b74d1693771..d2d058bfa3c 100644 --- a/src/mesa/meson.build +++ b/src/mesa/meson.build @@ -343,10 +343,6 @@ files_libmesa_common = files( 'vbo/vbo_save_draw.c', 'vbo/vbo_save.h', 'vbo/vbo_save_loopback.c', - 'vbo/vbo_split.c', - 'vbo/vbo_split_copy.c', - 'vbo/vbo_split.h', - 'vbo/vbo_split_inplace.c', 'x86/common_x86.c', ) @@ -366,6 +362,10 @@ files_libmesa_classic = files( 'tnl/t_pipeline.c', 'tnl/t_pipeline.h', 'tnl/t_rebase.c', + 'tnl/t_split.c', + 'tnl/t_split_copy.c', + 'tnl/t_split.h', + 'tnl/t_split_inplace.c', 'tnl/t_vb_cliptmp.h', 'tnl/t_vb_fog.c', 'tnl/t_vb_light.c', |