/hg/icedtea6: Backport S6979979: Rounding error in font sizes se...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Fri Dec 10 14:30:24 PST 2010
changeset 8c26dcba8a27 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=8c26dcba8a27
author: Omair Majid <omajid at redhat.com>
date: Fri Dec 10 17:30:05 2010 -0500
Backport S6979979: Rounding error in font sizes selected by the GTK
Look and Feel
2010-12-10 Omair Majid <omajid at redhat.com>
Backport S6979979.
* NEWS: Updated with fix.
* Makefile.am: Apply patch.
* patches/openjdk/6979979-gtk_font_size_rounding.patch: New file.
Backport of S6979979.
diffstat:
4 files changed, 69 insertions(+), 1 deletion(-)
ChangeLog | 8 ++
Makefile.am | 3
NEWS | 2
patches/openjdk/6979979-gtk_font_size_rounding.patch | 57 ++++++++++++++++++
diffs (101 lines):
diff -r 589610636e32 -r 8c26dcba8a27 ChangeLog
--- a/ChangeLog Wed Dec 08 17:41:44 2010 +0100
+++ b/ChangeLog Fri Dec 10 17:30:05 2010 -0500
@@ -1,3 +1,11 @@ 2010-12-08 Pavel Tisnovsky <ptisnovs at r
+2010-12-10 Omair Majid <omajid at redhat.com>
+
+ Backport S6979979.
+ * NEWS: Updated with fix.
+ * Makefile.am: Apply patch.
+ * patches/openjdk/6979979-gtk_font_size_rounding.patch: New file. Backport
+ of S6979979.
+
2010-12-08 Pavel Tisnovsky <ptisnovs at redhat.com>
* Makefile.am: Add new patch.
diff -r 589610636e32 -r 8c26dcba8a27 Makefile.am
--- a/Makefile.am Wed Dec 08 17:41:44 2010 +0100
+++ b/Makefile.am Fri Dec 10 17:30:05 2010 -0500
@@ -308,7 +308,8 @@ ICEDTEA_PATCHES = \
patches/openjdk/7003777-bad-html-entity-parse.patch \
patches/openjdk/6941936-broken-pipe.patch \
patches/openjdk/6943219-failure-in-linux.patch \
- patches/jtreg-6929067-fix.patch
+ patches/jtreg-6929067-fix.patch \
+ patches/openjdk/6979979-gtk_font_size_rounding.patch
if WITH_ALT_HSBUILD
ICEDTEA_PATCHES += \
diff -r 589610636e32 -r 8c26dcba8a27 NEWS
--- a/NEWS Wed Dec 08 17:41:44 2010 +0100
+++ b/NEWS Fri Dec 10 17:30:05 2010 -0500
@@ -48,6 +48,8 @@ New in release 1.10 (2010-XX-XX):
- S6976265: No STROKE_CONTROL
- S6967434, PR450, RH530642: Round joins/caps of scaled up lines have poor quality.
- S7002666: Eclipse CDT projects crash with compressed oops
+ - S6979979, RH508185: Rounding error in font sizes selected by the GTK Look and Feel
+
* Bug fixes
- S7003777, RH647674: JTextPane produces incorrect content after parsing the html text
diff -r 589610636e32 -r 8c26dcba8a27 patches/openjdk/6979979-gtk_font_size_rounding.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/openjdk/6979979-gtk_font_size_rounding.patch Fri Dec 10 17:30:05 2010 -0500
@@ -0,0 +1,57 @@
+# HG changeset patch
+# User omajid
+# Date 1284475538 14400
+# Node ID 9216ec4e4c1443fe854872630aa8b3726523c0c9
+# Parent f4ad6e24e75db494a0308743b39a8f455a4b7d79
+6979979: Rounding error in font sizes selected by the GTK Look and Feel
+Summary: Use floating point font sizes
+Reviewed-by: prr
+
+diff -r f4ad6e24e75d -r 9216ec4e4c14 src/share/classes/com/sun/java/swing/plaf/gtk/PangoFonts.java
+--- openjdk/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/PangoFonts.java Tue Oct 19 16:51:14 2010 -0700
++++ openjdk/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/PangoFonts.java Tue Sep 14 10:45:38 2010 -0400
+@@ -148,11 +148,6 @@
+ * case for it to be a problem the values would have to be different.
+ * It also seems unlikely to arise except when a user explicitly
+ * deletes the X resource database entry.
+- * 3) Because of rounding errors sizes may differ very slightly
+- * between JDK and GTK. To fix that would at the very least require
+- * Swing to specify floating pt font sizes.
+- * Eg "10 pts" for GTK at 96 dpi to get the same size at Java 2D's
+- * 72 dpi you'd need to specify exactly 13.33.
+ * There also some other issues to be aware of for the future:
+ * GTK specifies the Xft.dpi value as server-wide which when used
+ * on systems with 2 distinct X screens with different physical DPI
+@@ -195,11 +190,16 @@
+ String fcFamilyLC = family.toLowerCase();
+ if (FontManager.mapFcName(fcFamilyLC) != null) {
+ /* family is a Fc/Pango logical font which we need to expand. */
+- return FontManager.getFontConfigFUIR(fcFamilyLC, style, size);
++ Font font = FontManager.getFontConfigFUIR(fcFamilyLC, style, size);
++ font = font.deriveFont(style, (float)dsize);
++ return new FontUIResource(font);
+ } else {
+ /* It's a physical font which we will create with a fallback */
+- Font font = new FontUIResource(family, style, size);
+- return FontManager.getCompositeFontUIResource(font);
++ Font font = new Font(family, style, size);
++ /* a roundabout way to set the font size in floating points */
++ font = font.deriveFont(style, (float)dsize);
++ FontUIResource fuir = new FontUIResource(font);
++ return FontManager.getCompositeFontUIResource(fuir);
+ }
+ }
+
+diff -r f4ad6e24e75d -r 9216ec4e4c14 src/share/classes/sun/font/FontManager.java
+--- openjdk/jdk/src/share/classes/sun/font/FontManager.java Tue Oct 19 16:51:14 2010 -0700
++++ openjdk/jdk/src/share/classes/sun/font/FontManager.java Tue Sep 14 10:45:38 2010 -0400
+@@ -431,8 +431,7 @@
+ */
+ public static FontUIResource getCompositeFontUIResource(Font font) {
+
+- FontUIResource fuir =
+- new FontUIResource(font.getName(),font.getStyle(),font.getSize());
++ FontUIResource fuir = new FontUIResource(font);
+ Font2D font2D = getFont2D(font);
+
+ if (!(font2D instanceof PhysicalFont)) {
More information about the distro-pkg-dev
mailing list