[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Wed Dec 2 12:25:38 UTC 2020
https://bugs.documentfoundation.org/show_bug.cgi?id=138122
--- Comment #87 from Tor Lillqvist <tml at iki.fi> ---
Using ideas from the experimentation patch mentioned in comment #39, I think I
see a clear improvement when using some combination of the tweaks from that,
like:
diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx
index 704bba1fae9c..23f93aeb9272 100644
--- a/vcl/quartz/salgdi.cxx
+++ b/vcl/quartz/salgdi.cxx
@@ -450,7 +450,16 @@ void AquaSalGraphics::DrawTextLayout(const
GenericSalLayout& rLayout)
// The view is vertically flipped (no idea why), flip it back.
CGContextScaleCTM(maContextHolder.get(), 1.0, -1.0);
- CGContextSetShouldAntialias(maContextHolder.get(), !mbNonAntialiasedText);
+
+ CGContextSetShouldAntialias(maContextHolder.get(), true);
+ CGContextSetAllowsAntialiasing(maContextHolder.get(), true);
+ CGContextSetAllowsFontSmoothing(maContextHolder.get(), false);
+ CGContextSetShouldSmoothFonts(maContextHolder.get(), false);
+ CGContextSetAllowsFontSubpixelPositioning(maContextHolder.get(), true);
+ CGContextSetShouldSubpixelPositionFonts(maContextHolder.get(), true);
+ CGContextSetAllowsFontSubpixelQuantization(maContextHolder.get(), true);
+ CGContextSetShouldSubpixelQuantizeFonts(maContextHolder.get(), true);
+
CGContextSetFillColor(maContextHolder.get(), maTextColor.AsArray());
if (rStyle.mbFauxBold)
But if I zoom in a lot, I see that the text is still rendered much different
than in NeoOffice, for instance.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20201202/f59c9f3e/attachment.htm>
More information about the Libreoffice-bugs
mailing list