freedreno/a6xx: remove unused param
Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3989>
This commit is contained in:
@@ -70,8 +70,7 @@ fd6_delete_compute_state(struct pipe_context *pctx, void *hwcso)
|
||||
|
||||
/* maybe move to fd6_program? */
|
||||
static void
|
||||
cs_program_emit(struct fd_ringbuffer *ring, struct ir3_shader_variant *v,
|
||||
const struct pipe_grid_info *info)
|
||||
cs_program_emit(struct fd_ringbuffer *ring, struct ir3_shader_variant *v)
|
||||
{
|
||||
const struct ir3_info *i = &v->info;
|
||||
enum a3xx_threadsize thrsz = FOUR_QUADS;
|
||||
@@ -136,7 +135,7 @@ fd6_launch_grid(struct fd_context *ctx, const struct pipe_grid_info *info)
|
||||
return;
|
||||
|
||||
if (ctx->dirty_shader[PIPE_SHADER_COMPUTE] & FD_DIRTY_SHADER_PROG)
|
||||
cs_program_emit(ring, v, info);
|
||||
cs_program_emit(ring, v);
|
||||
|
||||
fd6_emit_cs_state(ctx, ring, v);
|
||||
ir3_emit_cs_consts(v, ring, ctx, info);
|
||||
|
||||
Reference in New Issue
Block a user