• Home
Name Date Size #Lines LOC

..--

android/12-May-2024-191138

ios/12-May-2024-942904

lib/12-May-2024-622517

test_driver/12-May-2024-156121

README.mdD12-May-2024969 4023

pubspec.yamlD12-May-20246.1 KiB8368

README.md

1# Macrobenchmarks
2
3Performance benchmarks using flutter drive.
4
5## Cull opacity benchmark
6
7To run the cull opacity benchmark on a device:
8
9```
10flutter drive --profile test_driver/cull_opacity_perf.dart
11```
12
13Results should be in the file `build/cull_opacity_perf.timeline_summary.json`.
14
15More detailed logs should be in `build/cull_opacity_perf.timeline.json`.
16
17## Cubic bezier benchmark
18
19To run the cubic bezier benchmark on a device:
20
21```
22flutter drive --profile test_driver/cubic_bezier_perf.dart
23```
24
25Results should be in the file `build/cubic_bezier_perf.timeline_summary.json`.
26
27More detailed logs should be in `build/cubic_bezier_perf.timeline.json`.
28
29## Backdrop filter benchmark
30
31To run the backdrop filter benchmark on a device:
32
33```
34flutter drive --profile test_driver/backdrop_filter_perf.dart
35```
36
37Results should be in the file `build/backdrop_filter_perf.timeline_summary.json`.
38
39More detailed logs should be in `build/backdrop_filter_perf.timeline.json`.
40