aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2020-02-24 08:18:25 -0800
committerMarge Bot <[email protected]>2020-02-28 16:53:40 +0000
commit6b605804eade2c3701745c3ef447246cfe975413 (patch)
tree11f65ace2ae87af3659e101a0b7a2c5b3fb44557 /src/gallium
parent141d0d1c25d031df17c7ec1931c2e78cfc04736a (diff)
freedreno/a6xx: remove unused param
Signed-off-by: Rob Clark <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3989>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/freedreno/a6xx/fd6_compute.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_compute.c b/src/gallium/drivers/freedreno/a6xx/fd6_compute.c
index 55c4bff858c..9987d9eb099 100644
--- a/src/gallium/drivers/freedreno/a6xx/fd6_compute.c
+++ b/src/gallium/drivers/freedreno/a6xx/fd6_compute.c
@@ -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);