Module: Mesa Branch: main Commit: 574ba30fb448a269cf798641a775c7172c762c30 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=574ba30fb448a269cf798641a775c7172c762c30
Author: Lionel Landwerlin <[email protected]> Date: Fri Jun 25 10:44:29 2021 +0300 intel/devinfo: printout pixel pipes in info printout Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Jordan Justen <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14510> --- src/intel/dev/intel_dev_info.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/intel/dev/intel_dev_info.c b/src/intel/dev/intel_dev_info.c index 91eefb07daf..c203d5f2070 100644 --- a/src/intel/dev/intel_dev_info.c +++ b/src/intel/dev/intel_dev_info.c @@ -95,6 +95,11 @@ main(int argc, char *argv[]) fprintf(stdout, "\n"); } } + for (uint32_t pp = 0; pp < ARRAY_SIZE(devinfo.ppipe_subslices); pp++) { + fprintf(stdout, " pixel pipe %02u: %u\n", + pp, devinfo.ppipe_subslices[pp]); + } + fprintf(stdout, " slices: %u\n", n_s); fprintf(stdout, " %s: %u\n", subslice_name, n_ss); fprintf(stdout, " EU per %s: %u\n", subslice_name, devinfo.num_eu_per_subslice);
