diff options
author | Mathias Fröhlich <[email protected]> | 2018-10-29 06:13:20 +0100 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2018-11-01 06:08:49 +0100 |
commit | f726c61cc1b2b845d19dc2b348219c73713adf93 (patch) | |
tree | 8510d5181e5fed9c3cb8ba9083372d4ec2dcd489 /src/mesa/Makefile.sources | |
parent | 952a5da584971037cbab7b338977ff7257bc4009 (diff) |
mesa/vbo: Move src/mesa/vbo/vbo_exec_array.c -> src/mesa/main/draw.c
The array type draw is no longer directly dependent on the vbo module.
Thus move array type draws into mesa/main/draw.c.
Rename symbols starting with vbo_* to _mesa_* and apply some
reindenting to make it consistent.
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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/Makefile.sources b/src/mesa/Makefile.sources index 0d3c27711f4..6ff7ee2e3b6 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -66,6 +66,8 @@ MAIN_FILES = \ main/depth.h \ main/dlist.c \ main/dlist.h \ + main/draw.c \ + main/draw.h \ main/drawpix.c \ main/drawpix.h \ main/drawtex.c \ @@ -405,7 +407,6 @@ VBO_FILES = \ vbo/vbo_attrib_tmp.h \ vbo/vbo_context.c \ vbo/vbo_exec_api.c \ - vbo/vbo_exec_array.c \ vbo/vbo_exec.c \ vbo/vbo_exec_draw.c \ vbo/vbo_exec_eval.c \ |