Title: [190567] trunk/Source/WebCore
Revision
190567
Author
[email protected]
Date
2015-10-05 11:31:38 -0700 (Mon, 05 Oct 2015)

Log Message

Update setImageSmoothingQuality for additional reviews.
https://bugs.webkit.org/show_bug.cgi?id=149541

Patch by Katlyn Graff <[email protected]> on 2015-10-05
Reviewed by Chris Dumez.

* html/canvas/CanvasRenderingContext2D.cpp:
(WebCore::CanvasRenderingContext2D::setImageSmoothingQuality):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (190566 => 190567)


--- trunk/Source/WebCore/ChangeLog	2015-10-05 18:13:15 UTC (rev 190566)
+++ trunk/Source/WebCore/ChangeLog	2015-10-05 18:31:38 UTC (rev 190567)
@@ -1,3 +1,13 @@
+2015-10-05  Katlyn Graff  <[email protected]>
+
+        Update setImageSmoothingQuality for additional reviews.
+        https://bugs.webkit.org/show_bug.cgi?id=149541
+
+        Reviewed by Chris Dumez.
+
+        * html/canvas/CanvasRenderingContext2D.cpp:
+        (WebCore::CanvasRenderingContext2D::setImageSmoothingQuality):
+
 2015-10-05  Andreas Kling  <[email protected]>
 
         Remove unused HistoryItem::targetItem()

Modified: trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp (190566 => 190567)


--- trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp	2015-10-05 18:13:15 UTC (rev 190566)
+++ trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp	2015-10-05 18:31:38 UTC (rev 190567)
@@ -2591,7 +2591,7 @@
     realizeSaves();
     modifiableState().imageSmoothingQuality = quality;
 
-    if (!modifiableState().imageSmoothingEnabled)
+    if (!state().imageSmoothingEnabled)
         return;
 
     if (auto* context = drawingContext())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to