From: Kenneth Graunke Date: Thu, 23 May 2019 01:11:50 +0000 (-0700) Subject: intel/decoder: Use get_state_size() over guessed counts in more cases X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc273dece25e50b50a7b6373f4e92a29bd243fb0;p=mesa.git intel/decoder: Use get_state_size() over guessed counts in more cases This makes the following packets use actual driver provided sizes rather than guessing an arbitrary number: - CC_VIEWPORT - SF_CLIP_VIEWPORT - BLEND_STATE - COLOR_CALC_STATE - SCISSOR_RECT Reviewed-by: Sagar Ghuge --- diff --git a/src/intel/common/gen_batch_decoder.c b/src/intel/common/gen_batch_decoder.c index 5cac9836cb1..e44c352a053 100644 --- a/src/intel/common/gen_batch_decoder.c +++ b/src/intel/common/gen_batch_decoder.c @@ -706,6 +706,8 @@ decode_dynamic_state_pointers(struct gen_batch_decode_ctx *ctx, state = gen_spec_find_struct(ctx->spec, struct_type); } + count = update_count(ctx, state_offset, state->dw_length, count); + for (int i = 0; i < count; i++) { fprintf(ctx->fp, "%s %d\n", struct_type, i); ctx_print_group(ctx, state, state_addr, state_map);