Title: [182558] trunk/Source/WebCore
Revision
182558
Author
[email protected]
Date
2015-04-08 11:44:58 -0700 (Wed, 08 Apr 2015)

Log Message

Unreviewed, rolling out r182522.
https://bugs.webkit.org/show_bug.cgi?id=143529

Not needed any more (Requested by ap on #webkit).

Reverted changeset:

"Fix the build."
http://trac.webkit.org/changeset/182522

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (182557 => 182558)


--- trunk/Source/WebCore/ChangeLog	2015-04-08 18:30:47 UTC (rev 182557)
+++ trunk/Source/WebCore/ChangeLog	2015-04-08 18:44:58 UTC (rev 182558)
@@ -1,3 +1,15 @@
+2015-04-08  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r182522.
+        https://bugs.webkit.org/show_bug.cgi?id=143529
+
+        Not needed any more (Requested by ap on #webkit).
+
+        Reverted changeset:
+
+        "Fix the build."
+        http://trac.webkit.org/changeset/182522
+
 2015-04-08  Beth Dakin  <[email protected]>
 
         Force events should not require preventDefault in order to fire

Modified: trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm (182557 => 182558)


--- trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm	2015-04-08 18:30:47 UTC (rev 182557)
+++ trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm	2015-04-08 18:44:58 UTC (rev 182558)
@@ -284,7 +284,7 @@
     if (antialiasedFontDilationEnabled() && !CGContextGetShouldSmoothFonts(cgContext) && matchAntialiasedAndSmoothedFonts) {
         resetAntialiasingStyle = true;
         oldAntialiasingStyle = CGContextGetFontAntialiasingStyle(cgContext);
-        CGContextSetFontAntialiasingStyle(cgContext, kCGFontAntialiasingStyleCustomDilation);
+        CGContextSetFontAntialiasingStyle(cgContext, kCGFontAntialiasingStyleUnfilteredCustomDilation);
         CGContextSetFontDilation(cgContext, dilationSizeForTextColor(context->fillColor()));
     }
 #endif

Modified: trunk/Source/WebCore/platform/spi/cg/CoreGraphicsSPI.h (182557 => 182558)


--- trunk/Source/WebCore/platform/spi/cg/CoreGraphicsSPI.h	2015-04-08 18:30:47 UTC (rev 182557)
+++ trunk/Source/WebCore/platform/spi/cg/CoreGraphicsSPI.h	2015-04-08 18:44:58 UTC (rev 182558)
@@ -80,7 +80,7 @@
     kCGFontAntialiasingStyleUnfiltered = 0 << 7,
     kCGFontAntialiasingStyleFilterLight = 1 << 7,
 #if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
-    kCGFontAntialiasingStyleCustomDilation = (8 << 7),
+    kCGFontAntialiasingStyleUnfilteredCustomDilation = (8 << 7),
 #endif
 };
 typedef uint32_t CGFontAntialiasingStyle;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to