Jonah Williams
Jonah Williams
According to the documentation of https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_services , this object can be created ahead of map creation to reduce the initial map creation cost. From several profiling runs, this is expensive...
Not sure what the technical term is for this, but notice the white between the embedded app and the surrounding purple background. 
I attempted to escape certain special characters in impeller to avoid invalid depfiles. While this no longer causes an invalid depfile error, unfortunately we now always recompile these files as...
If I configure flutter for web to not support dart:io and then attempt to compile with ddc, I get an error as expected. ``` [ +679 ms] Skipping compiling hello_world|lib/main_web_entrypoint.dart...
When using codegen mode, flutter_tools runs the frontend_server as an additional layer on a build_runner process. This is required since the generation of incremental dill files is not currently supported...
Current approach is: ``` SkStrikeSpec strikeSpec = SkStrikeSpec::MakeWithNoDevice(run.font()); SkBulkGlyphMetricsAndPaths paths{strikeSpec}; auto is_color = paths.glyph(glyphs[i])->isColor(); ``` Which requires private includes. While we can construct our own Glyph instance using the glyph_ids...
While working on making a StrokePathGeometry, I found that I needed to update the API again to provide more data for the smoothing approximation: https://github.com/flutter/engine/blob/main/impeller/entity/contents/solid_stroke_contents.cc#L213 Rather than pass through each...
Libtess gives all tessellation results at once. The old callback approach had to re-duplicate and push to vectors in order to give one point at a time. Previously, I introduced...
Attempt to improve average case performance by not recreating the glyph atlas if the contents are identical
### issue_link https://github.com/flutter/flutter/issues/115433 ### Commit Hash 27281da ### Target beta ### pr_link https://github.com/flutter/flutter/pull/116554 ### Impacted Users web developers on chromeos ### Impact Description web developers using chrome os will be...