changeset 540:72d0bf249385 cacao

2007-12-20 Lillian Angel <langel@redhat.com> Fixes Bug #65 * patches/icedtea-antialias.patch: Removed. Antialiasing works.
author Lillian Angel <langel@redhat.com>
date Thu, 20 Dec 2007 14:49:01 -0500
parents d416a2d5ad11
children 7dc097dff4c2
files ChangeLog Makefile.am patches/icedtea-antialias.patch
diffstat 3 files changed, 1 insertions(+), 23 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Dec 20 14:13:59 2007 -0500
+++ b/ChangeLog	Thu Dec 20 14:49:01 2007 -0500
@@ -1,8 +1,7 @@
 2007-12-20  Lillian Angel  <langel@redhat.com>
 
 	Fixes Bug #65
-	* patches/icedtea-antialias.patch: Changed to only turn on AA when
-	text AA is on. Otherwise, AA is ignored.
+	* patches/icedtea-antialias.patch: Removed. Antialiasing works.
 
 2007-12-20  Lillian Angel  <langel@redhat.com>
 
--- a/Makefile.am	Thu Dec 20 14:13:59 2007 -0500
+++ b/Makefile.am	Thu Dec 20 14:49:01 2007 -0500
@@ -175,7 +175,6 @@
 	patches/icedtea-version.patch \
 	patches/icedtea-text-relocations.patch \
 	patches/icedtea-graphics.patch \
-	patches/icedtea-antialias.patch \
 	patches/icedtea-paths.patch \
 	patches/icedtea-debuginfo.patch \
 	patches/icedtea-ssl.patch \
--- a/patches/icedtea-antialias.patch	Thu Dec 20 14:13:59 2007 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
---- openjdk.orig/jdk/src/share/classes/sun/java2d/SurfaceData.java	2007-12-10 15:47:39.000000000 -0500
-+++ openjdk/jdk/src/share/classes/sun/java2d/SurfaceData.java	2007-12-20 13:44:53.000000000 -0500
-@@ -509,7 +509,7 @@
-                 // assert(sg2d.surfaceData == this);
-             }
-         } else if (sg2d.compositeState == sg2d.COMP_CUSTOM) {
--            if (sg2d.antialiasHint == SunHints.INTVAL_ANTIALIAS_ON) {
-+            if (sg2d.textAntialiasHint == SunHints.INTVAL_TEXT_ANTIALIAS_ON) {
-                 if (sg2d.clipState == sg2d.CLIP_SHAPE) {
-                     sg2d.drawpipe = AAClipCompViaShape;
-                     sg2d.fillpipe = AAClipCompViaShape;
-@@ -531,7 +531,7 @@
-                     sg2d.textpipe = compText;
-                 }
-             }
--        } else if (sg2d.antialiasHint == SunHints.INTVAL_ANTIALIAS_ON) {
-+        } else if (sg2d.textAntialiasHint == SunHints.INTVAL_TEXT_ANTIALIAS_ON) {
-             sg2d.alphafill = getMaskFill(sg2d);
-             // assert(sg2d.surfaceData == this);
-             if (sg2d.alphafill != null) {