gaaclarke
gaaclarke
@brianosman I suspect this issue may be related to the [`EGL_GL_COLORSPACE`](https://registry.khronos.org/EGL/extensions/KHR/EGL_KHR_gl_colorspace.txt) setting of the surface provided by Skia. It looks like Skia isn't setting that explicitly and the [default value...
I tried to reproduce the issue and set the operating system color to "boosted" and "adjusted" and got the same results as iOS on a Pixel 4a on Android 13:...
FWIW [FlutterDartProject init] takes 4ms on iPhone SE. Debug build at dd77b73d7e03fcbbd49536a3b58395f086b91d8d Edit: This was recorded on a full Flutter app, not Add-to-app.
I measured with the same previous settings, but an Add-to-app scenario and didn't notice any problem either. The slowdown is plausible. I just don't know what conditions lead to `[NSBundle...
> I would like this flag to remain, but maybe my use case is too rare? I've personally run into this problem when working with a designer on another product....
Alternatively, we could remove the flag and automatically do dithering. That's probably better since many users won't be savvy enough to know to look for it. The problem with that...
> and my understanding is that platform channel messages are FIFO even across channels @stuartmorgan That's correct with the caveat that if you are using platform channel features like specifying...
Reproduction code: ```dart import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData(...
Here is the skia code, they split this out into its own file, which we should probably do, too, to avoid doing the detection of the 2 points inside of...
Here is my first stab at adapting the algorithm from the paper. My calculation for t always returns 0.0 right now. I'll start trying to debug it tomorrow: https://gist.github.com/gaaclarke/bd7fd4b95c6cc90a1f9042e17c6e996d