diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2020-04-09 12:19:07 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2020-04-10 15:16:34 +0200 |
commit | 894c0806328627aadd1e92c8601a5858a3ea627f (patch) | |
tree | e81b62fa021926058ae1adb6f701f622990f3898 /vcl/win | |
parent | c728c9df75344f431817d876b73ec867c7d449f6 (diff) |
prefer DirectWrite for Skia's Windows text rendering
Change-Id: Ibfb6206751126def10905bb22effbe1a947cd6d6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91968
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/gdi/salfont.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/win/gdi/salfont.cxx b/vcl/win/gdi/salfont.cxx index 774178b683f8..cd7ca435e807 100644 --- a/vcl/win/gdi/salfont.cxx +++ b/vcl/win/gdi/salfont.cxx @@ -58,6 +58,7 @@ #include <win/saldata.hxx> #include <win/salgdi.h> #include <win/winlayout.hxx> +#include <win/wingdiimpl.hxx> #include <impfontcharmap.hxx> #include <impfontmetricdata.hxx> #include <impglyphitem.hxx> @@ -1272,6 +1273,9 @@ void WinSalGraphics::GetDevFontList( PhysicalFontCollection* pFontCollection ) void WinSalGraphics::ClearDevFontCache() { + WinSalGraphicsImplBase* pImpl = dynamic_cast<WinSalGraphicsImplBase*>(GetImpl()); + assert(pImpl != nullptr); + pImpl->ClearDevFontCache(); ImplReleaseTempFonts(*GetSalData(), false); } |