summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>2018-11-09 16:49:12 +0000
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>2018-11-16 11:40:14 +0000
commitac324a6809c09c54d3b0bfdb00e5e62987ec4ad8 (patch)
treef49812874ba5fe13ca4ab25494f744b77783b9a2
parent59c1059528bcbc339743104b486fc4aadd959017 (diff)
intel/aub_viewer: fix dynamic state printing
Identical fix to : commit cbd4bc1346f7397242e157bb66099b950a8c5643 Author: Jason Ekstrand <jason.ekstrand@intel.com> Date: Fri Aug 24 16:04:03 2018 -0500 intel/batch_decoder: Fix dynamic state printing Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Toni Lönnberg <toni.lonnberg@intel.com>
-rw-r--r--src/intel/tools/aubinator_viewer_decoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/tools/aubinator_viewer_decoder.cpp b/src/intel/tools/aubinator_viewer_decoder.cpp
index 8aeddaf432c..fd3bc739bd7 100644
--- a/src/intel/tools/aubinator_viewer_decoder.cpp
+++ b/src/intel/tools/aubinator_viewer_decoder.cpp
@@ -651,10 +651,10 @@ decode_dynamic_state_pointers(struct aub_viewer_decode_ctx *ctx,
for (int i = 0; i < count; i++) {
ImGui::Text("%s %d", struct_type, i);
- aub_viewer_print_group(ctx, state, state_offset, state_map);
+ aub_viewer_print_group(ctx, state, state_addr, state_map);
state_addr += state->dw_length * 4;
- state_map += state->dw_length;
+ state_map += state->dw_length * 4;
}
}