From 42f1df1ec5879edff5c633bbda3f12d677ae4a71 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Mon, 27 Mar 2023 15:01:51 -0700 Subject: [PATCH] intel/perfetto: Drop unused "pipelined" field. Reviewed-by: Rob Clark Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/ds/intel_driver_ds.cc | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/intel/ds/intel_driver_ds.cc b/src/intel/ds/intel_driver_ds.cc index 8b02de36bd6..42b0ac8d943 100644 --- a/src/intel/ds/intel_driver_ds.cc +++ b/src/intel/ds/intel_driver_ds.cc @@ -44,12 +44,6 @@ static const struct { const char *name; - /* Tells us if a given stage is pipelined. This is used to build stacks of - * pipelined elements so that the perfetto UI doesn't get confused by elements - * ending out of order. - */ - bool pipelined; - /* The perfetto UI requires that there is a parent-child relationship * within a row of elements. Which means that all children elements must * end within the lifespan of their parent. @@ -62,47 +56,38 @@ static const struct { /* Order must match the enum! */ { "queue", - false, INTEL_DS_QUEUE_STAGE_QUEUE, }, { "cmd-buffer", - false, INTEL_DS_QUEUE_STAGE_CMD_BUFFER, }, { "generate-draws", - false, INTEL_DS_QUEUE_STAGE_GENERATE_DRAWS, }, { "stall", - false, INTEL_DS_QUEUE_STAGE_STALL, }, { "compute", - true, INTEL_DS_QUEUE_STAGE_COMPUTE, }, { "render-pass", - true, INTEL_DS_QUEUE_STAGE_RENDER_PASS, }, { "blorp", - true, INTEL_DS_QUEUE_STAGE_BLORP, }, { "draw", - true, INTEL_DS_QUEUE_STAGE_DRAW, }, { "draw_mesh", - true, INTEL_DS_QUEUE_STAGE_DRAW_MESH, }, };