Title: [180523] trunk/Source/WebCore
Revision
180523
Author
s...@apple.com
Date
2015-02-23 15:04:53 -0800 (Mon, 23 Feb 2015)

Log Message

Drawing an SVG image into a canvas using drawImage() ignores globalAlpha.
https://bugs.webkit.org/show_bug.cgi?id=141729.

Reviewed by Daniel Bates.

Fix a build break which is caused by http://trac.webkit.org/changeset/180511/trunk.
Two functions of GraphicsContext were made inline but they were kept WEBCORE_EXPORT.

* platform/graphics/GraphicsContext.h:
(WebCore::GraphicsContext::paintingDisabled):
(WebCore::GraphicsContext::updatingControlTints):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (180522 => 180523)


--- trunk/Source/WebCore/ChangeLog	2015-02-23 23:04:33 UTC (rev 180522)
+++ trunk/Source/WebCore/ChangeLog	2015-02-23 23:04:53 UTC (rev 180523)
@@ -1,3 +1,17 @@
+2015-02-23  Said Abou-Hallawa  <sabouhall...@apple.com>
+
+        Drawing an SVG image into a canvas using drawImage() ignores globalAlpha.
+        https://bugs.webkit.org/show_bug.cgi?id=141729.
+
+        Reviewed by Daniel Bates.
+
+        Fix a build break which is caused by http://trac.webkit.org/changeset/180511/trunk.
+        Two functions of GraphicsContext were made inline but they were kept WEBCORE_EXPORT.
+
+        * platform/graphics/GraphicsContext.h:
+        (WebCore::GraphicsContext::paintingDisabled):
+        (WebCore::GraphicsContext::updatingControlTints):
+
 2015-02-22  Dean Jackson  <d...@apple.com>
 
         [iOS] Max canvas size is lower than expected

Modified: trunk/Source/WebCore/platform/graphics/GraphicsContext.h (180522 => 180523)


--- trunk/Source/WebCore/platform/graphics/GraphicsContext.h	2015-02-23 23:04:33 UTC (rev 180522)
+++ trunk/Source/WebCore/platform/graphics/GraphicsContext.h	2015-02-23 23:04:53 UTC (rev 180523)
@@ -360,10 +360,10 @@
         void drawLineForDocumentMarker(const FloatPoint&, float width, DocumentMarkerLineStyle);
 
         void setPaintingDisabled(bool paintingDisabled) { m_state.paintingDisabled = paintingDisabled; }
-        WEBCORE_EXPORT bool paintingDisabled() const { return m_state.paintingDisabled; }
+        bool paintingDisabled() const { return m_state.paintingDisabled; }
 
         void setUpdatingControlTints(bool);
-        WEBCORE_EXPORT bool updatingControlTints() const { return m_updatingControlTints; }
+        bool updatingControlTints() const { return m_updatingControlTints; }
 
         WEBCORE_EXPORT void beginTransparencyLayer(float opacity);
         WEBCORE_EXPORT void endTransparencyLayer();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to