diff options
author | Iago Toral Quiroga <[email protected]> | 2014-04-08 13:01:20 +0200 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-04-08 15:10:10 -0700 |
commit | 1a92637c68b84fa30e90f442e8a3d32c450cafcc (patch) | |
tree | 20e67c25b51ef2607c1265d853ecf7e7869c278a /src/mesa/tnl/t_context.c | |
parent | 2ffb50d77b7ae3cdedf0319a0def16732ed39578 (diff) |
tnl: Merge _tnl_vbo_draw_prims() into _tnl_draw_prims().
This should help prevent situations where we render without proper index
bounds. For example: https://bugs.freedesktop.org/show_bug.cgi?id=59455
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/tnl/t_context.c')
-rw-r--r-- | src/mesa/tnl/t_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_context.c b/src/mesa/tnl/t_context.c index 134f699be5f..eb5bae41da2 100644 --- a/src/mesa/tnl/t_context.c +++ b/src/mesa/tnl/t_context.c @@ -93,7 +93,7 @@ _tnl_CreateContext( struct gl_context *ctx ) } /* plug in the VBO drawing function */ - vbo_set_draw_func(ctx, _tnl_vbo_draw_prims); + vbo_set_draw_func(ctx, _tnl_draw_prims); _math_init_transformation(); _math_init_translate(); |