-
Notifications
You must be signed in to change notification settings - Fork 6k
[Impeller] add benchmarks for the stroke geometry entity code #50616
[Impeller] add benchmarks for the stroke geometry entity code #50616
Conversation
|
Some notes:
|
|
Sample output showing all of the combinations that are now run: |
| MAKE_STROKE_BENCHMARK_CAPTURE##uv(path, Butt, Bevel); \ | ||
| MAKE_STROKE_BENCHMARK_CAPTURE##uv(path, Butt, Miter); \ | ||
| MAKE_STROKE_BENCHMARK_CAPTURE##uv(path, Butt, Round); \ | ||
| MAKE_STROKE_BENCHMARK_CAPTURE##uv(path, Square, Bevel); \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why leave off combos like Square + Miter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could add them. I just thought that we should test one attribute at a time, as I describe in the "notes" comment above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, yeah - makes sense. I don't think we need the full combinatorial set.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though all combinations are tested for both uv and non-uv. I could go either way on filling out the rest of the cap/join combinations. Note that it would take us from 5 to 9 variations * 2 path types * UV/nonUV
jonahwilliams
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM w/ question
…143417) flutter/engine@abb51c4...c0607a0 2024-02-14 [email protected] Temporarily change canvaskit kitchensink test to unblock the skia roll (flutter/engine#50617) 2024-02-13 [email protected] [Impeller] add benchmarks for the stroke geometry entity code (flutter/engine#50616) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Adds benchmarks (and backend support methods) for tracking the performance of the stroking code in the entity geometry package.