Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix for #2657, prevent subpixel in masks #2662

Merged
merged 1 commit into from Apr 16, 2018
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

hotfix for #2657, prevent subpixel in masks

  • Loading branch information
Gankra committed Apr 16, 2018
commit e42f158ca1f3f42ac3dfea7779975c014fd570b1
@@ -1225,7 +1225,8 @@ impl<'a> DisplayListFlattener<'a> {
// TODO(gw): This is super conservative. We can expand on this a lot
// once all the picture code is in place and landed.
let allow_subpixel_aa = composite_ops.count() == 0 &&
transform_style == TransformStyle::Flat;
transform_style == TransformStyle::Flat &&
composite_mode.is_none();

// Push the SC onto the stack, so we know how to handle things in
// pop_stacking_context.
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.