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/Makefile.sources | |
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/Makefile.sources')
-rw-r--r-- | src/mesa/Makefile.sources | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/Makefile.sources b/src/mesa/Makefile.sources index 0446078136d..92565ef8f5e 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -372,6 +372,10 @@ TNL_FILES = \ tnl/t_pipeline.h \ tnl/t_rebase.c \ tnl/t_rebase.h \ + 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 \ @@ -411,11 +415,7 @@ VBO_FILES = \ vbo/vbo_save.c \ 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 + vbo/vbo_save_loopback.c STATETRACKER_FILES = \ state_tracker/st_atifs_to_tgsi.c \ |