diff options
author | Brian Paul <[email protected]> | 2018-02-06 15:35:30 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-02-08 09:49:03 -0700 |
commit | 5396f8546a559d3439f1099b14a566b12354f9b7 (patch) | |
tree | 297fe123ca312af2f185467d638f779ce182a770 | |
parent | b03ade55b9fbb48b87123b2bd34a6c24ceb2b5b1 (diff) |
vbo: improve comments on vbo_draw_func()
And rename a parameter name.
Reviewed-by: Mathias Fröhlich <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
-rw-r--r-- | src/mesa/vbo/vbo.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mesa/vbo/vbo.h b/src/mesa/vbo/vbo.h index a04f9b849c9..d594ba8f6a6 100644 --- a/src/mesa/vbo/vbo.h +++ b/src/mesa/vbo/vbo.h @@ -149,9 +149,10 @@ vbo_save_EndCallList(struct gl_context *ctx); * \param index_bounds_valid are min_index and max_index valid? * \param min_index lowest vertex index used * \param max_index highest vertex index used - * \param tfb_vertcount describes TFB output, or NULL - * \param stream If called via DrawTransformFeedback, specifies the vertex - * stream buffer from which to get the vertex count + * \param tfb_vertcount if non-null, indicates which transform feedback + * object has the vertex count. + * \param tfb_stream If called via DrawTransformFeedbackStream, specifies the + * vertex stream buffer from which to get the vertex count. * \param indirect If any prims are indirect, this specifies the buffer * to find the "DrawArrays/ElementsIndirectCommand" data. * This may be deprecated in the future @@ -164,7 +165,7 @@ typedef void (*vbo_draw_func)(struct gl_context *ctx, GLuint min_index, GLuint max_index, struct gl_transform_feedback_object *tfb_vertcount, - unsigned stream, + unsigned tfb_stream, struct gl_buffer_object *indirect); |