mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 23:10:11 +01:00
mesa: add indirect drawing buffer parameter to draw functions
Split from patch implementing ARB_draw_indirect. v2: Const-qualify the struct gl_buffer_object *indirect argument. v3: Fix up some more draw calls for new argument. v4: Fix up rebase conflicts in i965. v5: Undo const-qualification Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
eb0892b4b1
commit
80ac616fca
18 changed files with 39 additions and 27 deletions
|
|
@ -463,7 +463,8 @@ void brw_draw_prims( struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *unused_tfb_object)
|
||||
struct gl_transform_feedback_object *unused_tfb_object,
|
||||
struct gl_buffer_object *indirect )
|
||||
{
|
||||
struct brw_context *brw = brw_context(ctx);
|
||||
const struct gl_client_array **arrays = ctx->Array._DrawArrays;
|
||||
|
|
|
|||
|
|
@ -41,7 +41,8 @@ void brw_draw_prims( struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *unused_tfb_object);
|
||||
struct gl_transform_feedback_object *unused_tfb_object,
|
||||
struct gl_buffer_object *indirect );
|
||||
|
||||
void brw_draw_init( struct brw_context *brw );
|
||||
void brw_draw_destroy( struct brw_context *brw );
|
||||
|
|
|
|||
|
|
@ -169,7 +169,7 @@ brw_handle_primitive_restart(struct gl_context *ctx,
|
|||
/* Cut index should work for primitive restart, so use it
|
||||
*/
|
||||
brw->prim_restart.enable_cut_index = true;
|
||||
brw_draw_prims(ctx, prims, nr_prims, ib, GL_FALSE, -1, -1, NULL);
|
||||
brw_draw_prims(ctx, prims, nr_prims, ib, GL_FALSE, -1, -1, NULL, NULL);
|
||||
brw->prim_restart.enable_cut_index = false;
|
||||
} else {
|
||||
/* Not all the primitive draw modes are supported by the cut index,
|
||||
|
|
|
|||
|
|
@ -222,7 +222,8 @@ TAG(vbo_render_prims)(struct gl_context *ctx,
|
|||
const struct _mesa_index_buffer *ib,
|
||||
GLboolean index_bounds_valid,
|
||||
GLuint min_index, GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount);
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect);
|
||||
|
||||
static GLboolean
|
||||
vbo_maybe_split(struct gl_context *ctx, const struct gl_client_array **arrays,
|
||||
|
|
@ -453,7 +454,8 @@ TAG(vbo_render_prims)(struct gl_context *ctx,
|
|||
const struct _mesa_index_buffer *ib,
|
||||
GLboolean index_bounds_valid,
|
||||
GLuint min_index, GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount)
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect)
|
||||
{
|
||||
struct nouveau_render_state *render = to_render_state(ctx);
|
||||
const struct gl_client_array **arrays = ctx->Array._DrawArrays;
|
||||
|
|
@ -489,7 +491,8 @@ TAG(vbo_check_render_prims)(struct gl_context *ctx,
|
|||
const struct _mesa_index_buffer *ib,
|
||||
GLboolean index_bounds_valid,
|
||||
GLuint min_index, GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount)
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect)
|
||||
{
|
||||
struct nouveau_context *nctx = to_nouveau_context(ctx);
|
||||
|
||||
|
|
@ -498,12 +501,12 @@ TAG(vbo_check_render_prims)(struct gl_context *ctx,
|
|||
if (nctx->fallback == HWTNL)
|
||||
TAG(vbo_render_prims)(ctx, prims, nr_prims, ib,
|
||||
index_bounds_valid, min_index, max_index,
|
||||
tfb_vertcount);
|
||||
tfb_vertcount, indirect);
|
||||
|
||||
if (nctx->fallback == SWTNL)
|
||||
_tnl_vbo_draw_prims(ctx, prims, nr_prims, ib,
|
||||
index_bounds_valid, min_index, max_index,
|
||||
tfb_vertcount);
|
||||
tfb_vertcount, indirect);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ st_RasterPos(struct gl_context *ctx, const GLfloat v[4])
|
|||
* st_feedback_draw_vbo doesn't check for that flag. */
|
||||
ctx->Array._DrawArrays = rs->arrays;
|
||||
st_feedback_draw_vbo(ctx, &rs->prim, 1, NULL, GL_TRUE, 0, 1,
|
||||
NULL);
|
||||
NULL, NULL);
|
||||
ctx->Array._DrawArrays = saved_arrays;
|
||||
|
||||
/* restore draw's rasterization stage depending on rendermode */
|
||||
|
|
|
|||
|
|
@ -195,7 +195,8 @@ st_draw_vbo(struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount)
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect)
|
||||
{
|
||||
struct st_context *st = st_context(ctx);
|
||||
struct pipe_index_buffer ibuffer = {0};
|
||||
|
|
|
|||
|
|
@ -55,7 +55,8 @@ st_draw_vbo(struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount);
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect);
|
||||
|
||||
extern void
|
||||
st_feedback_draw_vbo(struct gl_context *ctx,
|
||||
|
|
@ -65,7 +66,8 @@ st_feedback_draw_vbo(struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount);
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect);
|
||||
|
||||
/**
|
||||
* When drawing with VBOs, the addresses specified with
|
||||
|
|
|
|||
|
|
@ -116,7 +116,8 @@ st_feedback_draw_vbo(struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount)
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect)
|
||||
{
|
||||
struct st_context *st = st_context(ctx);
|
||||
struct pipe_context *pipe = st->pipe;
|
||||
|
|
|
|||
|
|
@ -415,7 +415,8 @@ void _tnl_vbo_draw_prims(struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount)
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect)
|
||||
{
|
||||
const struct gl_client_array **arrays = ctx->Array._DrawArrays;
|
||||
|
||||
|
|
|
|||
|
|
@ -92,7 +92,8 @@ _tnl_vbo_draw_prims( struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount );
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect );
|
||||
|
||||
extern void
|
||||
_tnl_RasterPos(struct gl_context *ctx, const GLfloat vObj[4]);
|
||||
|
|
|
|||
|
|
@ -89,7 +89,8 @@ typedef void (*vbo_draw_func)( struct gl_context *ctx,
|
|||
GLboolean index_bounds_valid,
|
||||
GLuint min_index,
|
||||
GLuint max_index,
|
||||
struct gl_transform_feedback_object *tfb_vertcount );
|
||||
struct gl_transform_feedback_object *tfb_vertcount,
|
||||
struct gl_buffer_object *indirect );
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -583,7 +583,7 @@ vbo_handle_primitive_restart(struct gl_context *ctx,
|
|||
} else {
|
||||
/* Call driver directly for draw_prims */
|
||||
vbo->draw_prims(ctx, prim, nr_prims, ib,
|
||||
index_bounds_valid, min_index, max_index, NULL);
|
||||
index_bounds_valid, min_index, max_index, NULL, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -648,7 +648,7 @@ vbo_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start,
|
|||
/* draw one or two prims */
|
||||
check_buffers_are_unmapped(exec->array.inputs);
|
||||
vbo->draw_prims(ctx, prim, primCount, NULL,
|
||||
GL_TRUE, start, start + count - 1, NULL);
|
||||
GL_TRUE, start, start + count - 1, NULL, NULL);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
@ -659,7 +659,7 @@ vbo_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start,
|
|||
check_buffers_are_unmapped(exec->array.inputs);
|
||||
vbo->draw_prims(ctx, prim, 1, NULL,
|
||||
GL_TRUE, start, start + count - 1,
|
||||
NULL);
|
||||
NULL, NULL);
|
||||
}
|
||||
|
||||
if (MESA_DEBUG_FLAGS & DEBUG_ALWAYS_FLUSH) {
|
||||
|
|
@ -1490,7 +1490,7 @@ vbo_draw_transform_feedback(struct gl_context *ctx, GLenum mode,
|
|||
|
||||
check_buffers_are_unmapped(exec->array.inputs);
|
||||
vbo->draw_prims(ctx, prim, 1, NULL,
|
||||
GL_TRUE, 0, 0, obj);
|
||||
GL_TRUE, 0, 0, obj, NULL);
|
||||
|
||||
if (MESA_DEBUG_FLAGS & DEBUG_ALWAYS_FLUSH) {
|
||||
_mesa_flush(ctx);
|
||||
|
|
|
|||
|
|
@ -403,7 +403,7 @@ vbo_exec_vtx_flush(struct vbo_exec_context *exec, GLboolean keepUnmapped)
|
|||
GL_TRUE,
|
||||
0,
|
||||
exec->vtx.vert_count - 1,
|
||||
NULL);
|
||||
NULL, NULL);
|
||||
|
||||
/* If using a real VBO, get new storage -- unless asked not to.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -214,11 +214,11 @@ vbo_sw_primitive_restart(struct gl_context *ctx,
|
|||
(temp_prim.count == sub_prim->count)) {
|
||||
draw_prims_func(ctx, &temp_prim, 1, ib,
|
||||
GL_TRUE, sub_prim->min_index, sub_prim->max_index,
|
||||
NULL);
|
||||
NULL, NULL);
|
||||
} else {
|
||||
draw_prims_func(ctx, &temp_prim, 1, ib,
|
||||
GL_FALSE, -1, -1,
|
||||
NULL);
|
||||
NULL, NULL);
|
||||
}
|
||||
}
|
||||
if (sub_end_index >= end_index) {
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ void vbo_rebase_prims( struct gl_context *ctx,
|
|||
GL_TRUE,
|
||||
0,
|
||||
max_index - min_index,
|
||||
NULL );
|
||||
NULL, NULL );
|
||||
|
||||
ctx->Array._DrawArrays = saved_arrays;
|
||||
ctx->NewDriverState |= ctx->DriverFlags.NewArray;
|
||||
|
|
|
|||
|
|
@ -313,7 +313,7 @@ vbo_save_playback_vertex_list(struct gl_context *ctx, void *data)
|
|||
GL_TRUE,
|
||||
0, /* Node is a VBO, so this is ok */
|
||||
node->count - 1,
|
||||
NULL);
|
||||
NULL, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ flush( struct copy_context *copy )
|
|||
GL_TRUE,
|
||||
0,
|
||||
copy->dstbuf_nr - 1,
|
||||
NULL );
|
||||
NULL, NULL );
|
||||
|
||||
ctx->Array._DrawArrays = saved_arrays;
|
||||
ctx->NewDriverState |= ctx->DriverFlags.NewArray;
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ static void flush_vertex( struct split_context *split )
|
|||
!split->ib,
|
||||
split->min_index,
|
||||
split->max_index,
|
||||
NULL);
|
||||
NULL, NULL);
|
||||
|
||||
ctx->Array._DrawArrays = saved_arrays;
|
||||
ctx->NewDriverState |= ctx->DriverFlags.NewArray;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue