forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add benchmark case for RasterCache (#103338)
- Loading branch information
Showing
8 changed files
with
188 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
129 changes: 129 additions & 0 deletions
129
dev/benchmarks/macrobenchmarks/lib/src/raster_cache_use_memory.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,129 @@ | ||
// 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'; | ||
|
||
class RasterCacheUseMemory extends StatefulWidget { | ||
const RasterCacheUseMemory({super.key}); | ||
|
||
@override | ||
State<RasterCacheUseMemory> createState() => _RasterCacheUseMemoryState(); | ||
} | ||
|
||
class _RasterCacheUseMemoryState extends State<RasterCacheUseMemory> | ||
with TickerProviderStateMixin { | ||
final ScrollController _controller = ScrollController(); | ||
|
||
@override | ||
void initState() { | ||
super.initState(); | ||
_controller.addListener(() { | ||
if (_controller.offset < 5) { | ||
_controller.animateTo(20, | ||
duration: const Duration(milliseconds: 1000), curve: Curves.ease); | ||
} else if (_controller.offset >= 19) { | ||
_controller.animateTo(0, | ||
duration: const Duration(milliseconds: 1000), curve: Curves.ease); | ||
} | ||
}); | ||
Timer(const Duration(milliseconds: 1000), () { | ||
_controller.animateTo(150, | ||
duration: const Duration(milliseconds: 1000), curve: Curves.ease); | ||
}); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
backgroundColor: Colors.lightBlue, | ||
body: ListView( | ||
controller: _controller, | ||
children: <Widget>[ | ||
RepaintBoundary( | ||
child: ImageFiltered( | ||
imageFilter: ImageFilter.blur( | ||
sigmaX: 4, | ||
sigmaY: 4, | ||
), | ||
child: RepaintBoundary( | ||
child: Container( | ||
width: 50, | ||
height: 50, | ||
color: Colors.red, | ||
), | ||
), | ||
), | ||
), | ||
ShaderMask( | ||
shaderCallback: (Rect bounds) { | ||
return const RadialGradient( | ||
center: Alignment.topLeft, | ||
radius: 1.0, | ||
colors: <Color>[Colors.yellow, Colors.deepOrange], | ||
tileMode: TileMode.mirror, | ||
).createShader(bounds); | ||
}, | ||
blendMode: BlendMode.srcATop, | ||
child: Opacity( | ||
opacity: 0.5, | ||
child: Column( | ||
children: <Widget>[ | ||
ImageFiltered( | ||
imageFilter: ImageFilter.blur( | ||
sigmaX: 4, | ||
sigmaY: 4, | ||
), | ||
child: Row( | ||
children: <Widget>[ | ||
ImageFiltered( | ||
imageFilter: ImageFilter.blur( | ||
sigmaX: 4, | ||
sigmaY: 4, | ||
), | ||
child: RepaintBoundary( | ||
child: Container( | ||
margin: const EdgeInsets.fromLTRB(10, 5, 10, 5), | ||
decoration: BoxDecoration( | ||
color: Colors.white70, | ||
boxShadow: const <BoxShadow>[ | ||
BoxShadow( | ||
blurRadius: 5.0, | ||
), | ||
], | ||
borderRadius: BorderRadius.circular(5.0), | ||
), | ||
child: const FlutterLogo( | ||
size: 50, | ||
), | ||
), | ||
), | ||
) | ||
], | ||
), | ||
) | ||
], | ||
), | ||
), | ||
), | ||
const RepaintBoundary( | ||
child: FlutterLogo( | ||
size: 50, | ||
), | ||
), | ||
Container( | ||
height: 800, | ||
), | ||
], | ||
), | ||
); | ||
} | ||
|
||
@override | ||
void dispose() { | ||
_controller.dispose(); | ||
super.dispose(); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
dev/benchmarks/macrobenchmarks/test/raster_cache_use_memory_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( | ||
'raster_cache_use_memory_perf', | ||
kRasterCacheUseMemory, | ||
pageDelay: const Duration(seconds: 1), | ||
duration: const Duration(seconds: 10), | ||
); | ||
} |
14 changes: 14 additions & 0 deletions
14
dev/devicelab/bin/tasks/raster_cache_use_memory_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(createRasterCacheUseMemoryPerfE2ETest()); | ||
} |
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