-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Closed
flutter/engine
#56879Labels
c: regressionIt was better in the past than it is nowIt was better in the past than it is nowc: renderingUI glitches reported at the engine/skia or impeller rendering levelUI glitches reported at the engine/skia or impeller rendering levele: impellerImpeller rendering backend issues and features requestsImpeller rendering backend issues and features requestsengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.found in release: 3.27Found to occur in 3.27Found to occur in 3.27has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-androidAndroid applications specificallyAndroid applications specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer versionteam-engineOwned by Engine teamOwned by Engine team
Description
Steps to reproduce
- Android Studio > File > New > New Flutter Project... > Flutter > Next > Create > default Flutter Demo ("Normal counter app") created.
- Build and Run
- Android Emulator > Medium Phone API 35 > Power Button Click (to screen off) > Power Button Click (to screen on)
- Actual results are shown
- After screen off and on, then all texts are disappeared. This results are also same with physical Android phone.
- After that, all texts are rendered again only when screen touch or scroll up/down, etc.
Expected results
Normal counter app
Regardless of screen on/off by slightly clicking power button, counter app's text should be appeared.
Actual results
Code sample
Code sample
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// TRY THIS: Try running your application with "flutter run". You'll see
// the application has a purple toolbar. Then, without quitting the app,
// try changing the seedColor in the colorScheme below to Colors.green
// and then invoke "hot reload" (save your changes or press the "hot
// reload" button in a Flutter-supported IDE, or press "r" if you used
// the command line to start the app).
//
// Notice that the counter didn't reset back to zero; the application
// state is not lost during the reload. To reset the state, use hot
// restart instead.
//
// This works for code too, not just values: Most code changes can be
// tested with just a hot reload.
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
// This call to setState tells the Flutter framework that something has
// changed in this State, which causes it to rerun the build method below
// so that the display can reflect the updated values. If we changed
// _counter without calling setState(), then the build method would not be
// called again, and so nothing would appear to happen.
_counter++;
});
}
@override
Widget build(BuildContext context) {
// This method is rerun every time setState is called, for instance as done
// by the _incrementCounter method above.
//
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return Scaffold(
appBar: AppBar(
// TRY THIS: Try changing the color here to a specific color (to
// Colors.amber, perhaps?) and trigger a hot reload to see the AppBar
// change color while the other colors stay the same.
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Column(
// Column is also a layout widget. It takes a list of children and
// arranges them vertically. By default, it sizes itself to fit its
// children horizontally, and tries to be as tall as its parent.
//
// Column has various properties to control how it sizes itself and
// how it positions its children. Here we use mainAxisAlignment to
// center the children vertically; the main axis here is the vertical
// axis because Columns are vertical (the cross axis would be
// horizontal).
//
// TRY THIS: Invoke "debug painting" (choose the "Toggle Debug Paint"
// action in the IDE, or press "p" in the console), to see the
// wireframe for each widget.
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text('You have pushed the button this many times:'),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}
Screenshots or Video
Screenshots / Video demonstration
[Upload media here]
Logs
Logs
Launching lib/main.dart on sdk gphone64 arm64 in debug mode...
Running Gradle task 'assembleDebug'...
Checking the license for package Android SDK Build-Tools 34 in /Users/tester/Library/Android/sdk/licenses
License for package Android SDK Build-Tools 34 accepted.
Preparing "Install Android SDK Build-Tools 34 v.34.0.0".
"Install Android SDK Build-Tools 34 v.34.0.0" ready.
Installing Android SDK Build-Tools 34 in /Users/tester/Library/Android/sdk/build-tools/34.0.0
"Install Android SDK Build-Tools 34 v.34.0.0" complete.
"Install Android SDK Build-Tools 34 v.34.0.0" finished.
✓ Built build/app/outputs/flutter-apk/app-debug.apk
Installing build/app/outputs/flutter-apk/app-debug.apk...
I/flutter ( 3616): [IMPORTANT:flutter/shell/platform/android/android_context_vk_impeller.cc(60)] Using the Impeller rendering backend (Vulkan).
Debug service listening on ws://127.0.0.1:61620/n_veI5VAGME=/ws
Syncing files to device sdk gphone64 arm64...
I/mple.testdelme1( 3616): Compiler allocated 5250KB to compile void android.view.ViewRootImpl.performTraversals()
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1f1a10 hos timage handle 0x700030000037c
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 142
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1f1cd0 hos timage handle 0x700030000037b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
D/ProfileInstaller( 3616): Installing profile for com.example.testdelme1
D/VRI[MainActivity]( 3616): visibilityChanged oldVisibility=true newVisibility=false
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21e2d0 hos timage handle 0x700040000035f
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 138
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21e250 hos timage handle 0x700040000035e
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 144
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21e6d0 hos timage handle 0x700040000035d
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 156
D/VRI[MainActivity]( 3616): visibilityChanged oldVisibility=true newVisibility=false
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 141
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 154
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 157
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 161
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 154
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 157
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 161
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 154
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 157
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 161
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 154
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 157
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 161
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 154
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 157
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 171
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 161
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 154
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 157
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 161
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 154
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 157
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb50 hos timage handle 0x700050000036b
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac221c90 hos timage handle 0x700050000036a
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1a5f50 hos timage handle 0x7000500000368
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 161
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1ef4d0 hos timage handle 0x7000500000369
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 149
D/VRI[MainActivity]( 3616): visibilityChanged oldVisibility=true newVisibility=false
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 137
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/typographer/lazy_glyph_atlas.cc(85)] Break on 'ImpellerValidationBreak' to inspect point of failure: Could not create valid atlas.
E/flutter ( 3616): [ERROR:flutter/impeller/entity/contents/text_contents.cc(89)] Break on 'ImpellerValidationBreak' to inspect point of failure: Cannot render glyphs without prepared atlas.
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 172
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 137
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 164
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 148
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 166
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 165
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 153
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac227e50 hos timage handle 0x7000700000361
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 158
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac1fa390 hos timage handle 0x7000400000995
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 159
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21a390 hos timage handle 0x7000400000994
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 162
I/MESA ( 3616): exportSyncFdForQSRILocked: call for image 0xb400006fac21eb90 hos timage handle 0x7000400000993
I/MESA ( 3616): exportSyncFdForQSRILocked: got fd: 163
Flutter Doctor output
Doctor output
[✓] Flutter (Channel master, 3.27.0-1.0.pre.662, on macOS 15.1.1 24B91 darwin-arm64, locale ko-KR)
• Flutter version 3.27.0-1.0.pre.662 on channel master at /Users/tester/development/flutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision c519383bcc (4 hours ago), 2024-11-27 17:15:59 -0800
• Engine revision ba112add5d
• Dart version 3.7.0 (build 3.7.0-188.0.dev)
• DevTools version 2.41.0-dev.2
[✓] Android toolchain - develop for Android devices (Android SDK version 35.0.0)
• Android SDK at /Users/tester/Library/Android/sdk
• Platform android-35, build-tools 35.0.0
• Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java
This is the JDK bundled with the latest Android Studio installation on this machine.
To manually set the JDK path, use: `flutter config --jdk-dir="path/to/jdk"`.
• Java version OpenJDK Runtime Environment (build 17.0.11+0-17.0.11b1207.24-11852314)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 16.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Build 16B40
• CocoaPods version 1.16.2
[✓] Chrome - develop for the web
• Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[✓] Android Studio (version 2024.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
• Java version OpenJDK Runtime Environment (build 17.0.11+0-17.0.11b1207.24-11852314)
[✓] VS Code (version 1.95.3)
• VS Code at /Users/tester/Desktop/ISO/BIN/Visual Studio Code.app/Contents
• Flutter extension version 3.101.20241031
[✓] Connected device (4 available)
• sdk gphone64 arm64 (mobile) • emulator-5554 • android-arm64 • Android 15 (API 35) (emulator)
• macOS (desktop) • macos • darwin-arm64 • macOS 15.1.1 24B91 darwin-arm64
• Mac Designed for iPad (desktop) • mac-designed-for-ipad • darwin • macOS 15.1.1 24B91 darwin-arm64
• Chrome (web) • chrome • web-javascript • Google Chrome 131.0.6778.86
[✓] Network resources
• All expected network resources are available.
• No issues found!buntagonalprism
Metadata
Metadata
Assignees
Labels
c: regressionIt was better in the past than it is nowIt was better in the past than it is nowc: renderingUI glitches reported at the engine/skia or impeller rendering levelUI glitches reported at the engine/skia or impeller rendering levele: impellerImpeller rendering backend issues and features requestsImpeller rendering backend issues and features requestsengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.found in release: 3.27Found to occur in 3.27Found to occur in 3.27has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-androidAndroid applications specificallyAndroid applications specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer versionteam-engineOwned by Engine teamOwned by Engine team