intel/ds: remove duplicate arguments
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29997>
This commit is contained in:

committed by
Marge Bot

parent
aa737e124c
commit
b393ede8c8
@@ -116,14 +116,14 @@ def define_tracepoints(args):
|
||||
|
||||
# Blorp operations, Anv & Iris
|
||||
begin_end_tp('blorp',
|
||||
tp_args=[Arg(type='enum blorp_op', name='op', var='op', c_format='%s', to_prim_type='blorp_op_to_name({})'),
|
||||
Arg(type='uint32_t', name='width', var='width', c_format='%u'),
|
||||
Arg(type='uint32_t', name='height', var='height', c_format='%u'),
|
||||
Arg(type='uint32_t', name='samples', var='samples', c_format='%u'),
|
||||
Arg(type='enum blorp_shader_pipeline', name='blorp_pipe', var='shader_pipe', c_format='%s', to_prim_type='blorp_shader_pipeline_to_name({})'),
|
||||
Arg(type='enum isl_format', name='dst_fmt', var='dst_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'),
|
||||
Arg(type='enum isl_format', name='src_fmt', var='src_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'),
|
||||
Arg(type='uint8_t', name='predicated', var='predicated', c_format='%hhu'),
|
||||
tp_args=[Arg(type='enum blorp_op', var='op', c_format='%s', to_prim_type='blorp_op_to_name({})'),
|
||||
Arg(type='uint32_t', var='width', c_format='%u'),
|
||||
Arg(type='uint32_t', var='height', c_format='%u'),
|
||||
Arg(type='uint32_t', var='samples', c_format='%u'),
|
||||
Arg(type='enum blorp_shader_pipeline', var='shader_pipe', c_format='%s', to_prim_type='blorp_shader_pipeline_to_name({})'),
|
||||
Arg(type='enum isl_format', var='dst_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'),
|
||||
Arg(type='enum isl_format', var='src_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'),
|
||||
Arg(type='uint8_t', var='predicated', c_format='%hhu'),
|
||||
])
|
||||
|
||||
# vkCmdWriteBufferMarker*, only for Anv
|
||||
|
Reference in New Issue
Block a user