From 4a29a16e87d7b784e4bfacd4e077cafe8efcca26 Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Mon, 29 Jul 2024 13:15:25 -0700 Subject: [PATCH] [devicelab] enable impeller in external texture test. (#152502) This will allow us to test impeller with SurfaceTextures. Don't know how to verify if this will work ahead of time without just turning it on... --- dev/devicelab/bin/tasks/external_textures_integration_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/devicelab/bin/tasks/external_textures_integration_test.dart b/dev/devicelab/bin/tasks/external_textures_integration_test.dart index 64234a229c..28d234baec 100644 --- a/dev/devicelab/bin/tasks/external_textures_integration_test.dart +++ b/dev/devicelab/bin/tasks/external_textures_integration_test.dart @@ -8,5 +8,5 @@ import 'package:flutter_devicelab/tasks/integration_tests.dart'; Future main() async { deviceOperatingSystem = DeviceOperatingSystem.android; - await task(createExternalTexturesFrameRateIntegrationTest(extraOptions: ['--no-enable-impeller'])); + await task(createExternalTexturesFrameRateIntegrationTest()); }