diff options
author | Eric Engestrom <[email protected]> | 2018-10-30 12:05:14 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2018-10-30 18:10:59 +0000 |
commit | a18d726621c1be6e4cb48678c539106658557d40 (patch) | |
tree | 58d1a0891cd702906eb7aff8c43d1dc7248bd0a4 /src/intel | |
parent | 0bbee28a3b25da1f784d7ff7529556e5614e9f03 (diff) |
aub_viewer: show vertex buffer pitch
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/tools/aubinator_viewer_decoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/tools/aubinator_viewer_decoder.cpp b/src/intel/tools/aubinator_viewer_decoder.cpp index 697009894e6..5311a8afc31 100644 --- a/src/intel/tools/aubinator_viewer_decoder.cpp +++ b/src/intel/tools/aubinator_viewer_decoder.cpp @@ -376,7 +376,7 @@ handle_3dstate_vertex_buffers(struct aub_viewer_decode_ctx *ctx, if (!ready) continue; - ImGui::Text("vertex buffer %d, size %d", index, vb_size); + ImGui::Text("vertex buffer %d, size %d, pitch %d", index, vb_size, pitch); if (vb.map == NULL) { ImGui::TextColored(ctx->cfg->missing_color, |