diff options
author | Mathias Fröhlich <[email protected]> | 2017-12-16 10:57:47 +0100 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2018-02-06 21:20:14 +0100 |
commit | 236657842b56e08055a4a9be8def8e440de78b58 (patch) | |
tree | dfd515754af1df7fcb9c1cfcba855967bfbfd352 /src/mesa/tnl/t_draw.c | |
parent | 2313c33e950a1b17e7787dd8a3b2f1e823d0cfd4 (diff) |
vbo: Move vbo_rebase into its only caller module tnl.
Signed-off-by: Mathias Fröhlich <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/tnl/t_draw.c')
-rw-r--r-- | src/mesa/tnl/t_draw.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_draw.c b/src/mesa/tnl/t_draw.c index 9fca4da1f4d..c19d77d6418 100644 --- a/src/mesa/tnl/t_draw.c +++ b/src/mesa/tnl/t_draw.c @@ -38,6 +38,7 @@ #include "util/half_float.h" #include "t_context.h" +#include "t_rebase.h" #include "tnl.h" @@ -461,9 +462,9 @@ void _tnl_draw_prims(struct gl_context *ctx, if (min_index) { /* We always translate away calls with min_index != 0. */ - vbo_rebase_prims( ctx, arrays, prim, nr_prims, ib, - min_index, max_index, - _tnl_draw_prims ); + t_rebase_prims( ctx, arrays, prim, nr_prims, ib, + min_index, max_index, + _tnl_draw_prims ); return; } else if ((GLint)max_index + max_basevertex > max) { |