mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
tu/perfetto: Drop unused arg to send_descriptors().
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22278>
This commit is contained in:
parent
020baed66e
commit
947f5d4d7a
1 changed files with 2 additions and 2 deletions
|
|
@ -132,7 +132,7 @@ PERFETTO_DECLARE_DATA_SOURCE_STATIC_MEMBERS(TuRenderpassDataSource);
|
|||
PERFETTO_DEFINE_DATA_SOURCE_STATIC_MEMBERS(TuRenderpassDataSource);
|
||||
|
||||
static void
|
||||
send_descriptors(TuRenderpassDataSource::TraceContext &ctx, uint64_t ts_ns)
|
||||
send_descriptors(TuRenderpassDataSource::TraceContext &ctx)
|
||||
{
|
||||
PERFETTO_LOG("Sending renderstage descriptors");
|
||||
|
||||
|
|
@ -266,7 +266,7 @@ stage_end(struct tu_device *dev, uint64_t ts_ns, enum tu_stage_id stage_id,
|
|||
|
||||
TuRenderpassDataSource::Trace([=](TuRenderpassDataSource::TraceContext tctx) {
|
||||
if (auto state = tctx.GetIncrementalState(); state->was_cleared) {
|
||||
send_descriptors(tctx, stage->start_ts);
|
||||
send_descriptors(tctx);
|
||||
state->was_cleared = false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue