freedreno/a6xx: Remove compute state user_consts_cmdstream_size

Unused.

Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36589>
This commit is contained in:
Rob Clark
2025-07-21 14:50:21 -07:00
committed by Marge Bot
parent 946bfed6fe
commit 3864d1c209
2 changed files with 0 additions and 3 deletions
@@ -171,8 +171,6 @@ fd6_launch_grid(struct fd_context *ctx, const struct pipe_grid_info *info) in_dt
cs->stateobj = fd_ringbuffer_new_object(ctx->pipe, 0x1000);
cs_program_emit<CHIP>(ctx, cs->stateobj, cs->v);
cs->user_consts_cmdstream_size = fd6_user_consts_cmdstream_size<CHIP>(cs->v);
}
trace_start_compute(&ctx->batch->trace, ring, !!info->indirect, info->work_dim,
@@ -15,7 +15,6 @@ struct fd6_compute_state {
void *hwcso; /* ir3_shader_state */
struct ir3_shader_variant *v;
struct fd_ringbuffer *stateobj;
uint32_t user_consts_cmdstream_size;
};
template <chip CHIP>