Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
b4040c86
Unverified
Commit
b4040c86
authored
Mar 17, 2022
by
wangying
Committed by
GitHub
Mar 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add benchmark for ColorFilter raster cache (#99542)
parent
f6c4c3df
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
137 additions
and
0 deletions
+137
-0
.ci.yaml
.ci.yaml
+12
-0
TESTOWNERS
TESTOWNERS
+1
-0
common.dart
dev/benchmarks/macrobenchmarks/lib/common.dart
+1
-0
main.dart
dev/benchmarks/macrobenchmarks/lib/main.dart
+9
-0
color_filter_cache.dart
...enchmarks/macrobenchmarks/lib/src/color_filter_cache.dart
+77
-0
color_filter_cache_perf_e2e.dart
...rks/macrobenchmarks/test/color_filter_cache_perf_e2e.dart
+16
-0
color_filter_cache_perf__e2e_summary.dart
...celab/bin/tasks/color_filter_cache_perf__e2e_summary.dart
+14
-0
perf_tests.dart
dev/devicelab/lib/tasks/perf_tests.dart
+7
-0
No files found.
.ci.yaml
View file @
b4040c86
...
...
@@ -1515,6 +1515,18 @@ targets:
task_name
:
color_filter_and_fade_perf__timeline_summary
scheduler
:
luci
-
name
:
Linux_android color_filter_cache_perf__e2e_summary
bringup
:
true
recipe
:
devicelab/devicelab_drone
presubmit
:
false
timeout
:
60
properties
:
tags
:
>
["devicelab","android","linux"]
task_name
:
color_filter_cache_perf__e2e_summary
benchmark
:
"
true"
scheduler
:
luci
-
name
:
Linux_android complex_layout_android__compile
recipe
:
devicelab/devicelab_drone
presubmit
:
false
...
...
TESTOWNERS
View file @
b4040c86
...
...
@@ -23,6 +23,7 @@
/dev/devicelab/bin/tasks/basic_material_app_android__compile.dart @zanderso @flutter/tool
/dev/devicelab/bin/tasks/codegen_integration.dart @zanderso @flutter/tool
/dev/devicelab/bin/tasks/color_filter_and_fade_perf__e2e_summary.dart @zanderso @flutter/engine
/dev/devicelab/bin/tasks/color_filter_cache_perf__e2e_summary.dart @flar @flutter/engine
/dev/devicelab/bin/tasks/complex_layout_android__compile.dart @zanderso @flutter/tool
/dev/devicelab/bin/tasks/complex_layout_android__scroll_smoothness.dart @zanderso @flutter/engine
/dev/devicelab/bin/tasks/complex_layout_scroll_perf__devtools_memory.dart @zanderso @flutter/engine
...
...
dev/benchmarks/macrobenchmarks/lib/common.dart
View file @
b4040c86
...
...
@@ -15,6 +15,7 @@ const String kTextRouteName = '/text';
const
String
kFullscreenTextRouteName
=
'/fullscreen_text'
;
const
String
kAnimatedPlaceholderRouteName
=
'/animated_placeholder'
;
const
String
kColorFilterAndFadeRouteName
=
'/color_filter_and_fade'
;
const
String
kColorFilterCacheRouteName
=
'/color_filter_cache'
;
const
String
kFadingChildAnimationRouteName
=
'/fading_child_animation'
;
const
String
kImageFilteredTransformAnimationRouteName
=
'/imagefiltered_transform_animation'
;
const
String
kMultiWidgetConstructionRouteName
=
'/multi_widget_construction'
;
...
...
dev/benchmarks/macrobenchmarks/lib/main.dart
View file @
b4040c86
...
...
@@ -11,6 +11,7 @@ import 'src/animated_placeholder.dart';
import
'src/animation_with_microtasks.dart'
;
import
'src/backdrop_filter.dart'
;
import
'src/color_filter_and_fade.dart'
;
import
'src/color_filter_cache.dart'
;
import
'src/cubic_bezier.dart'
;
import
'src/cull_opacity.dart'
;
import
'src/filtered_child_animation.dart'
;
...
...
@@ -55,6 +56,7 @@ class MacrobenchmarksApp extends StatelessWidget {
kFullscreenTextRouteName:
(
BuildContext
context
)
=>
const
TextFieldPage
(),
kAnimatedPlaceholderRouteName:
(
BuildContext
context
)
=>
const
AnimatedPlaceholderPage
(),
kColorFilterAndFadeRouteName:
(
BuildContext
context
)
=>
const
ColorFilterAndFadePage
(),
kColorFilterCacheRouteName:
(
BuildContext
context
)
=>
const
ColorFilterCachePage
(),
kFadingChildAnimationRouteName:
(
BuildContext
context
)
=>
const
FilteredChildAnimationPage
(
FilterType
.
opacity
),
kImageFilteredTransformAnimationRouteName:
(
BuildContext
context
)
=>
const
FilteredChildAnimationPage
(
FilterType
.
rotateFilter
),
kMultiWidgetConstructionRouteName:
(
BuildContext
context
)
=>
const
MultiWidgetConstructTable
(
10
,
20
),
...
...
@@ -166,6 +168,13 @@ class HomePage extends StatelessWidget {
Navigator
.
pushNamed
(
context
,
kColorFilterAndFadeRouteName
);
},
),
ElevatedButton
(
key:
const
Key
(
kColorFilterCacheRouteName
),
child:
const
Text
(
'Color Filter Cache'
),
onPressed:
()
{
Navigator
.
pushNamed
(
context
,
kColorFilterCacheRouteName
);
},
),
ElevatedButton
(
key:
const
Key
(
kFadingChildAnimationRouteName
),
child:
const
Text
(
'Fading Child Animation'
),
...
...
dev/benchmarks/macrobenchmarks/lib/src/color_filter_cache.dart
0 → 100644
View file @
b4040c86
// 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
ColorFilterCachePage
extends
StatefulWidget
{
const
ColorFilterCachePage
({
Key
?
key
})
:
super
(
key:
key
);
@override
State
<
ColorFilterCachePage
>
createState
()
=>
_ColorFilterCachePageState
();
}
class
_ColorFilterCachePageState
extends
State
<
ColorFilterCachePage
>
with
TickerProviderStateMixin
{
final
ScrollController
_controller
=
ScrollController
();
@override
void
initState
()
{
super
.
initState
();
_controller
.
addListener
(()
{
if
(
_controller
.
offset
<
20
)
{
_controller
.
animateTo
(
150
,
duration:
const
Duration
(
milliseconds:
1000
),
curve:
Curves
.
ease
);
}
else
if
(
_controller
.
offset
>
130
)
{
_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
>[
const
SizedBox
(
height:
150
),
ColorFiltered
(
colorFilter:
ColorFilter
.
mode
(
Colors
.
green
[
300
]!,
BlendMode
.
luminosity
),
child:
Container
(
clipBehavior:
Clip
.
antiAlias
,
decoration:
const
BoxDecoration
(
boxShadow:
<
BoxShadow
>[
BoxShadow
(
color:
Colors
.
red
,
blurRadius:
5.0
,
),
],
color:
Colors
.
blue
,
backgroundBlendMode:
BlendMode
.
luminosity
),
child:
Column
(
children:
<
Widget
>[
const
Text
(
'Color Filter Cache Pref Test'
),
Image
.
asset
(
'food/butternut_squash_soup.png'
,
package:
'flutter_gallery_assets'
,
fit:
BoxFit
.
cover
,
width:
330
,
height:
210
,
),
const
Text
(
'Color Filter Cache Pref Test'
),
],
),
),
),
const
SizedBox
(
height:
1000
),
],
),
);
}
@override
void
dispose
()
{
_controller
.
dispose
();
super
.
dispose
();
}
}
dev/benchmarks/macrobenchmarks/test/color_filter_cache_perf_e2e.dart
0 → 100644
View file @
b4040c86
// 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
(
'color_filter_cache_perf'
,
kColorFilterCacheRouteName
,
pageDelay:
const
Duration
(
seconds:
1
),
duration:
const
Duration
(
seconds:
10
),
);
}
dev/devicelab/bin/tasks/color_filter_cache_perf__e2e_summary.dart
0 → 100644
View file @
b4040c86
// 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
(
createColorFilterCachePerfE2ETest
());
}
dev/devicelab/lib/tasks/perf_tests.dart
View file @
b4040c86
...
...
@@ -371,6 +371,13 @@ TaskFunction createColorFilterAndFadePerfE2ETest() {
).
run
;
}
TaskFunction
createColorFilterCachePerfE2ETest
(
)
{
return
PerfTest
.
e2e
(
'
${flutterDirectory.path}
/dev/benchmarks/macrobenchmarks'
,
'test/color_filter_cache_perf_e2e.dart'
,
).
run
;
}
TaskFunction
createFadingChildAnimationPerfTest
(
)
{
return
PerfTest
(
'
${flutterDirectory.path}
/dev/benchmarks/macrobenchmarks'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment