Skip to content

Commit

Permalink
tools,profiler - allow the number of skipped frames to be configured
Browse files Browse the repository at this point in the history
  • Loading branch information
cscheid committed Aug 29, 2024
1 parent 8db007c commit 9dc0d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/profiler/convert-to-perfetto.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const frameSkip = 3;
const filename = Deno.args[0];
const frameSkip = Number(Deno.args[1]) ?? 3;
const file = Deno.readTextFileSync(filename);

let longestCommonPrefix: string | undefined = undefined;
Expand Down

0 comments on commit 9dc0d88

Please sign in to comment.