Title: [166647] trunk/Source/WebCore
Revision
166647
Author
[email protected]
Date
2014-04-02 08:29:20 -0700 (Wed, 02 Apr 2014)

Log Message

Unreviewed build fix after r166642.
(WinCairo should really turn subpixel layout on.)

* platform/graphics/LayoutSize.h:
(WebCore::flooredForPainting):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (166646 => 166647)


--- trunk/Source/WebCore/ChangeLog	2014-04-02 15:10:02 UTC (rev 166646)
+++ trunk/Source/WebCore/ChangeLog	2014-04-02 15:29:20 UTC (rev 166647)
@@ -1,5 +1,13 @@
 2014-04-02  Zalan Bujtas  <[email protected]>
 
+        Unreviewed build fix after r166642.
+        (WinCairo should really turn subpixel layout on.)
+
+        * platform/graphics/LayoutSize.h:
+        (WebCore::flooredForPainting):
+
+2014-04-02  Zalan Bujtas  <[email protected]>
+
         Subpixel rendering: Make GraphicsContext::drawTiledImage* functions float based.
         https://bugs.webkit.org/show_bug.cgi?id=131062
 

Modified: trunk/Source/WebCore/platform/graphics/LayoutSize.h (166646 => 166647)


--- trunk/Source/WebCore/platform/graphics/LayoutSize.h	2014-04-02 15:10:02 UTC (rev 166646)
+++ trunk/Source/WebCore/platform/graphics/LayoutSize.h	2014-04-02 15:29:20 UTC (rev 166647)
@@ -198,7 +198,7 @@
     return FloatSize(floorToDevicePixel(size.width(), pixelSnappingFactor), floorToDevicePixel(size.height(), pixelSnappingFactor));
 #else
     UNUSED_PARAM(pixelSnappingFactor);
-    return FloatSize(point);
+    return FloatSize(size);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to