92abaefe25d6bba03c38c01f8ece7594a41f53d4
Currently we're using the canvas coordinate positions for dithering. This usually works, but if the gradient includes a transform, then we might end up with 1 canvas coordinate pt = multiple physical pixels. This can result dithering artifacts since larger blocks will get the same color weight. instead we can use gl_FragCoord.xy to get the screenspace coordinates which aren't effect by this transform. Fixes https://github.com/flutter/flutter/issues/145481 ## Before  ## After  Using the app from https://github.com/flutter/flutter/issues/145481 but with the scaling factor increased to 10.0.
Description
Languages
Dart
75.4%
C++
16.4%
Objective-C++
2.7%
Java
2.7%
Objective-C
0.6%
Other
1.8%