Title: [189152] trunk/Source/WebCore
Revision
189152
Author
[email protected]
Date
2015-08-29 09:46:57 -0700 (Sat, 29 Aug 2015)

Log Message

El Capitan build fix.

* platform/graphics/cocoa/FontCascadeCocoa.mm:
(WebCore::FontCascade::drawGlyphs):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (189151 => 189152)


--- trunk/Source/WebCore/ChangeLog	2015-08-29 15:59:13 UTC (rev 189151)
+++ trunk/Source/WebCore/ChangeLog	2015-08-29 16:46:57 UTC (rev 189152)
@@ -1,3 +1,10 @@
+2015-08-29  Jessie Berlin  <[email protected]>
+
+        El Capitan build fix.
+
+        * platform/graphics/cocoa/FontCascadeCocoa.mm:
+        (WebCore::FontCascade::drawGlyphs):
+
 2015-08-29  Chris Fleizach  <[email protected]>
 
         AX: When navigating the elements of a scrollable element with VoiceOver, the scrollTop() position of the element does not permanently change

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


--- trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm	2015-08-29 15:59:13 UTC (rev 189151)
+++ trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm	2015-08-29 16:46:57 UTC (rev 189152)
@@ -308,7 +308,7 @@
         resetAntialiasingStyle = true;
         oldAntialiasingStyle = CGContextGetFontAntialiasingStyle(cgContext);
         CGContextSetFontAntialiasingStyle(cgContext, kCGFontAntialiasingStyleUnfilteredCustomDilation);
-        CGContextSetFontDilation(cgContext, dilationSizeForTextColor(context->fillColor()));
+        CGContextSetFontDilation(cgContext, dilationSizeForTextColor(context.fillColor()));
     }
 #endif
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to