intel/ds: add new category/stage for draw mesh events

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19344>
This commit is contained in:
Marcin Ślusarz
2022-10-27 14:24:32 +02:00
committed by Marge Bot
parent 2bc82581ad
commit 63ad8aed41
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -90,6 +90,11 @@ static const struct {
true,
INTEL_DS_QUEUE_STAGE_DRAW,
},
{
"draw_mesh",
true,
INTEL_DS_QUEUE_STAGE_DRAW_MESH,
},
};
struct IntelRenderpassIncrementalState {
+1
View File
@@ -68,6 +68,7 @@ enum intel_ds_queue_stage {
INTEL_DS_QUEUE_STAGE_RENDER_PASS,
INTEL_DS_QUEUE_STAGE_BLORP,
INTEL_DS_QUEUE_STAGE_DRAW,
INTEL_DS_QUEUE_STAGE_DRAW_MESH,
INTEL_DS_QUEUE_STAGE_N_STAGES,
};