[Impeller] Add animated_blur_backdrop_filter_perf execution on samsung vulkan and opengles (#131864)
issue: https://github.com/flutter/flutter/issues/131784
This commit is contained in:
parent
9489009790
commit
f0e39349c9
22
.ci.yaml
22
.ci.yaml
@ -2600,6 +2600,28 @@ targets:
|
|||||||
["devicelab", "android", "linux"]
|
["devicelab", "android", "linux"]
|
||||||
task_name: animated_blur_backdrop_filter_perf__timeline_summary
|
task_name: animated_blur_backdrop_filter_perf__timeline_summary
|
||||||
|
|
||||||
|
- name: Linux_samsung_s10 animated_blur_backdrop_filter_perf__timeline_summary
|
||||||
|
recipe: devicelab/devicelab_drone
|
||||||
|
presubmit: false
|
||||||
|
bringup: true
|
||||||
|
timeout: 60
|
||||||
|
properties:
|
||||||
|
ignore_flakiness: "true"
|
||||||
|
tags: >
|
||||||
|
["devicelab", "android", "linux", "samsung", "s10"]
|
||||||
|
task_name: animated_blur_backdrop_filter_perf__timeline_summary
|
||||||
|
|
||||||
|
- name: Linux_samsung_s10 animated_blur_backdrop_filter_perf_opengles__timeline_summary
|
||||||
|
recipe: devicelab/devicelab_drone
|
||||||
|
presubmit: false
|
||||||
|
bringup: true
|
||||||
|
timeout: 60
|
||||||
|
properties:
|
||||||
|
ignore_flakiness: "true"
|
||||||
|
tags: >
|
||||||
|
["devicelab", "android", "linux", "samsung", "s10"]
|
||||||
|
task_name: animated_blur_backdrop_filter_perf_opengles__timeline_summary
|
||||||
|
|
||||||
- name: Staging_build_linux analyze
|
- name: Staging_build_linux analyze
|
||||||
presubmit: false
|
presubmit: false
|
||||||
bringup: true
|
bringup: true
|
||||||
|
@ -92,6 +92,7 @@
|
|||||||
/dev/devicelab/bin/tasks/web_size__compile_test.dart @yjbanov @flutter/web
|
/dev/devicelab/bin/tasks/web_size__compile_test.dart @yjbanov @flutter/web
|
||||||
/dev/devicelab/bin/tasks/wide_gamut_ios.dart @gaaclarke @flutter/engine
|
/dev/devicelab/bin/tasks/wide_gamut_ios.dart @gaaclarke @flutter/engine
|
||||||
/dev/devicelab/bin/tasks/animated_blur_backdrop_filter_perf__timeline_summary.dart @jonahwilliams @flutter/engine
|
/dev/devicelab/bin/tasks/animated_blur_backdrop_filter_perf__timeline_summary.dart @jonahwilliams @flutter/engine
|
||||||
|
/dev/devicelab/bin/tasks/animated_blur_backdrop_filter_perf_opengles__timeline_summary.dart @gaaclarke @flutter/engine
|
||||||
/dev/devicelab/bin/tasks/slider_perf_android.dart @tahatesser @flutter/framework
|
/dev/devicelab/bin/tasks/slider_perf_android.dart @tahatesser @flutter/framework
|
||||||
|
|
||||||
## Windows Android DeviceLab tests
|
## Windows Android DeviceLab tests
|
||||||
|
@ -0,0 +1,15 @@
|
|||||||
|
// 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(createAnimatedBlurBackropFilterPerfTest(
|
||||||
|
enableImpeller: true, forceOpenGLES: true));
|
||||||
|
}
|
@ -630,12 +630,14 @@ TaskFunction createGradientStaticPerfE2ETest() {
|
|||||||
|
|
||||||
TaskFunction createAnimatedBlurBackropFilterPerfTest({
|
TaskFunction createAnimatedBlurBackropFilterPerfTest({
|
||||||
bool? enableImpeller,
|
bool? enableImpeller,
|
||||||
|
bool? forceOpenGLES,
|
||||||
}) {
|
}) {
|
||||||
return PerfTest(
|
return PerfTest(
|
||||||
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
|
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
|
||||||
'test_driver/run_app.dart',
|
'test_driver/run_app.dart',
|
||||||
'animated_blur_backdrop_filter_perf',
|
'animated_blur_backdrop_filter_perf',
|
||||||
enableImpeller: enableImpeller,
|
enableImpeller: enableImpeller,
|
||||||
|
forceOpenGLES: forceOpenGLES,
|
||||||
testDriver: 'test_driver/animated_blur_backdrop_filter_perf_test.dart',
|
testDriver: 'test_driver/animated_blur_backdrop_filter_perf_test.dart',
|
||||||
saveTraceFile: true,
|
saveTraceFile: true,
|
||||||
).run;
|
).run;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user