<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - LibreOffice text blurry on Retina displays on macOS 11"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=138122#c93">Comment # 93</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - LibreOffice text blurry on Retina displays on macOS 11"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=138122">bug 138122</a>
              from <span class="vcard"><a class="email" href="mailto:lupurus@web.de" title="lupurus@web.de">lupurus@web.de</a>
</span></b>
        <pre>Go to vcl/quartz/salvd.cxx

In bool AquaSalVirtualDevice::SetSize( tools::Long nDX, tools::Long nDY ) add
this:

float fScale = 1.0f;
if (pSalFrame->getNSWindow())
    fScale = [pSalFrame->getNSWindow() backingScaleFactor];

maBitmapContext.set(CGBitmapContextCreate(pRawData, nDX * fScale, nDY * fScale,
8, nBytesPerRow,
GetSalData()->mxRGBSpace, nFlags));


Now everything is crispy clear. Unfortunately LO became extremely slow with
that. Maybe someone knows more?</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>