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/meson.build | |
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/meson.build')
-rw-r--r-- | src/mesa/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/meson.build b/src/mesa/meson.build index ea884977db8..27c8c401c4d 100644 --- a/src/mesa/meson.build +++ b/src/mesa/meson.build @@ -115,6 +115,8 @@ files_libmesa_common = 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', @@ -330,7 +332,6 @@ files_libmesa_common = 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', |