diff options
author | Dave Airlie <[email protected]> | 2012-09-15 13:22:30 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2012-09-15 18:04:09 +1000 |
commit | 72f657c95056ef9848ffd28b17c9b4c026470a60 (patch) | |
tree | 4f0c4542dfcd4851b52729b18ae8d2f6ad7ab31f /src/mesa/vbo/vbo_exec.c | |
parent | ee9f5766378e3f4fbaf41e8c4d037b66793c1077 (diff) |
vbo: add a prefix to count_tessellated_primitives
Just to make it consistent with the rest of vbo, since it would
be an exported symbol anyways.
Reviewed-by: Matt Turner <[email protected]>
Acked-by: Kenneth Graunke <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_exec.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_exec.c b/src/mesa/vbo/vbo_exec.c index fd5e0f8911b..0763f0d4d58 100644 --- a/src/mesa/vbo/vbo_exec.c +++ b/src/mesa/vbo/vbo_exec.c @@ -105,7 +105,7 @@ void vbo_exec_invalidate_state( struct gl_context *ctx, GLuint new_state ) * PRIMITIVES_GENERATED and TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN queries. */ size_t -count_tessellated_primitives(const struct _mesa_prim *prim) +vbo_count_tessellated_primitives(const struct _mesa_prim *prim) { size_t num_primitives; switch (prim->mode) { |