Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Unified Diff: ui/gfx/font_render_params_linux.cc

Issue 929733002: Fix Pango font rendering with HiDPi displays on Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don’t scale fonts up twice when running with device_scale_factor > 1.0. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/gfx/font_render_params_linux.cc
diff --git a/ui/gfx/font_render_params_linux.cc b/ui/gfx/font_render_params_linux.cc
index 5698f0d76cd08ffb85d42092918fdc5ed7051d38..c1dfb1b1c323f27b768e6ebf552c8670b7e39897 100644
--- a/ui/gfx/font_render_params_linux.cc
+++ b/ui/gfx/font_render_params_linux.cc
@@ -16,8 +16,10 @@
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/synchronization/lock.h"
+#include "ui/gfx/display.h"
#include "ui/gfx/font.h"
#include "ui/gfx/linux_font_delegate.h"
+#include "ui/gfx/screen.h"
#include "ui/gfx/switches.h"
namespace gfx {
@@ -64,11 +66,7 @@ base::LazyInstance<SynchronizedCache>::Leaky g_synchronized_cache =
bool IsBrowserTextSubpixelPositioningEnabled(
const FontRenderParamsQuery& query) {
-#if defined(OS_CHROMEOS)
return query.device_scale_factor > 1.0f;
Daniel Erat 2015/03/16 13:57:53 it looks like you're enabling subpixel positioning
stapelberg 2015/03/17 08:36:34 Yeah, enabling this on HiDPi displays is what Chro
-#else
- return false;
-#endif
}
// Converts Fontconfig FC_HINT_STYLE to FontRenderParams::Hinting.
@@ -211,6 +209,16 @@ FontRenderParams GetFontRenderParams(const FontRenderParamsQuery& query,
#if defined(OS_CHROMEOS)
if (actual_query.device_scale_factor == 0)
Daniel Erat 2015/03/16 13:57:54 just move this test out of the #ifdefs: if (actua
stapelberg 2015/03/17 08:36:34 Done.
actual_query.device_scale_factor = device_scale_factor_for_internal_display;
+#else
+ // Linux does not support per-display DPI, so we use a slightly simpler code
+ // path than on ChromeOS to figure out the device scale factor.
Daniel Erat 2015/03/16 13:57:54 nit: s/ChromeOS/Chrome OS/
stapelberg 2015/03/17 08:36:33 Done.
+ if (actual_query.device_scale_factor == 0) {
+ gfx::Screen* screen = gfx::Screen::GetNativeScreen();
+ if (screen) {
Daniel Erat 2015/03/16 13:57:54 does gfx::Screen::GetNativeScreen() ever return nu
stapelberg 2015/03/17 08:36:34 Yes, it can. I’m getting the following segmentatio
oshima 2015/03/17 19:59:02 Doesn't this mean that this code inside block will
stapelberg 2015/03/18 08:17:53 No. When adding a LOG statement before line 218, I
oshima 2015/03/18 21:50:45 Oh, sorry, I was searching for different method na
+ gfx::Display display = screen->GetPrimaryDisplay();
+ actual_query.device_scale_factor = display.device_scale_factor();
+ }
+ }
#endif
const uint32 hash = HashFontRenderParamsQuery(actual_query);
SynchronizedCache* synchronized_cache = g_synchronized_cache.Pointer();

Powered by Google App Engine
This is Rietveld 408576698