forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add benchmark for clipper layers raster cache (#102495)
* Add clipper raster cache benchmarks * fix ci test error * Add PhysicalModel widget to test * Set top margin adaptive screen height * Remove PhysicalModel
- Loading branch information
1 parent
6bba577
commit b3d7a69
Showing
8 changed files
with
152 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
// Copyright 2014 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
import 'dart:async'; | ||
import 'dart:ui'; | ||
import 'package:flutter/material.dart'; | ||
import 'picture_cache.dart'; | ||
|
||
class ClipperCachePage extends StatefulWidget { | ||
const ClipperCachePage({super.key}); | ||
@override | ||
State<ClipperCachePage> createState() => _ClipperCachePageState(); | ||
} | ||
|
||
class _ClipperCachePageState extends State<ClipperCachePage> | ||
with TickerProviderStateMixin { | ||
final double _animateOffset = 100; | ||
final ScrollController _controller = ScrollController(); | ||
final bool _isComplex = true; | ||
late double _topMargin; | ||
|
||
@override | ||
void initState() { | ||
super.initState(); | ||
const double itemHeight = 140; | ||
_topMargin = (window.physicalSize.height / window.devicePixelRatio - itemHeight * 3) / 2; | ||
if (_topMargin < 0) { | ||
_topMargin = 0; | ||
} | ||
_controller.addListener(() { | ||
if (_controller.offset < 10) { | ||
_controller.animateTo(_animateOffset, duration: const Duration(milliseconds: 1000), curve: Curves.ease); | ||
} else if (_controller.offset > _animateOffset - 10) { | ||
_controller.animateTo(0, duration: const Duration(milliseconds: 1000), curve: Curves.ease); | ||
} | ||
}); | ||
Timer(const Duration(milliseconds: 500), () { | ||
_controller.animateTo(_animateOffset, duration: const Duration(milliseconds: 1000), curve: Curves.ease); | ||
}); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
backgroundColor: Colors.blue, | ||
body: ListView( | ||
controller: _controller, | ||
children: <Widget>[ | ||
SizedBox(height: _topMargin), | ||
ClipPath( | ||
clipBehavior: Clip.antiAliasWithSaveLayer, | ||
child: _makeChild(0, _isComplex) | ||
), | ||
ClipRect( | ||
clipBehavior: Clip.antiAliasWithSaveLayer, | ||
child: _makeChild(1, _isComplex) | ||
), | ||
ClipRRect( | ||
clipBehavior: Clip.antiAliasWithSaveLayer, | ||
child: _makeChild(2, _isComplex) | ||
), | ||
const SizedBox(height: 1000), | ||
], | ||
), | ||
); | ||
} | ||
|
||
Widget _makeChild(int itemIndex, bool complex) { | ||
final BoxDecoration decoration = BoxDecoration( | ||
color: Colors.white70, | ||
boxShadow: const <BoxShadow>[ | ||
BoxShadow( | ||
blurRadius: 5.0, | ||
), | ||
], | ||
borderRadius: BorderRadius.circular(5.0), | ||
); | ||
return RepaintBoundary( | ||
child: Container( | ||
margin: const EdgeInsets.fromLTRB(10, 5, 10, 5), | ||
decoration: complex ? decoration : null, | ||
child: ListItem(index: itemIndex), | ||
), | ||
); | ||
} | ||
|
||
@override | ||
void dispose() { | ||
_controller.dispose(); | ||
super.dispose(); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
dev/benchmarks/macrobenchmarks/test/clipper_cache_perf_e2e.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright 2014 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
import 'package:macrobenchmarks/common.dart'; | ||
|
||
import 'util.dart'; | ||
|
||
void main() { | ||
macroPerfTestE2E( | ||
'clipper_cache_perf', | ||
kClipperCacheRouteName, | ||
pageDelay: const Duration(seconds: 1), | ||
duration: const Duration(seconds: 10), | ||
); | ||
} |
14 changes: 14 additions & 0 deletions
14
dev/devicelab/bin/tasks/clipper_cache_perf__e2e_summary.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright 2014 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
import 'dart:async'; | ||
|
||
import 'package:flutter_devicelab/framework/devices.dart'; | ||
import 'package:flutter_devicelab/framework/framework.dart'; | ||
import 'package:flutter_devicelab/tasks/perf_tests.dart'; | ||
|
||
Future<void> main() async { | ||
deviceOperatingSystem = DeviceOperatingSystem.android; | ||
await task(createClipperCachePerfE2ETest()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters