diff options
author | Xisco Fauli <anistenis@gmail.com> | 2017-09-28 12:05:13 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-09-28 16:09:37 +0200 |
commit | 5440837e02dee8bc884e02be697bfd4def621d26 (patch) | |
tree | bf1ae9381d14f314fe0098f30d8c317a0d77cf77 | |
parent | 42b8e2e5a76a310c7cf0f29379fe33b52127d16f (diff) |
tdf#112486 Do not force GDI in no OpenGL
See:
http://nabble.documentfoundation.org/Re-Minutes-of-ESC-call-2017-09-21-tt4223238.html
Patch only for 5.3 branch
Change-Id: I19bb4b58d2260fd23c32a687a9f504540c229985
Reviewed-on: https://gerrit.libreoffice.org/42898
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | vcl/win/gdi/winlayout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx index 18c17b02abc2..f555d86325f2 100644 --- a/vcl/win/gdi/winlayout.cxx +++ b/vcl/win/gdi/winlayout.cxx @@ -3873,7 +3873,7 @@ void WinSalGraphics::DrawSalLayout(const CommonSalLayout& rLayout) if (!bUseOpenGL) { // no OpenGL, just classic rendering - DrawTextLayout(rLayout, hDC, !bForceGDI); + DrawTextLayout(rLayout, hDC, false); } else if (!bForceGDI && CacheGlyphs(rLayout) && DrawCachedGlyphs(rLayout)) |