Title: [269762] trunk/Source/WebCore
Revision
269762
Author
[email protected]
Date
2020-11-12 19:15:44 -0800 (Thu, 12 Nov 2020)

Log Message

Unreviewed. Fix the build warning below since r269753.
warning: unused parameter ‘spacing’ [-Wunused-parameter]

No new tests, no new behaviors.

* platform/graphics/cairo/GraphicsContextCairo.cpp:
(WebCore::GraphicsContext::drawPlatformPattern):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269761 => 269762)


--- trunk/Source/WebCore/ChangeLog	2020-11-13 00:34:07 UTC (rev 269761)
+++ trunk/Source/WebCore/ChangeLog	2020-11-13 03:15:44 UTC (rev 269762)
@@ -1,3 +1,13 @@
+2020-11-12  Joonghun Park  <[email protected]>
+
+        Unreviewed. Fix the build warning below since r269753.
+        warning: unused parameter ‘spacing’ [-Wunused-parameter]
+
+        No new tests, no new behaviors.
+
+        * platform/graphics/cairo/GraphicsContextCairo.cpp:
+        (WebCore::GraphicsContext::drawPlatformPattern):
+
 2020-11-12  Sam Weinig  <[email protected]>
 
         Move more WebKitLegacy specific settings usage to WebPreferences.yaml

Modified: trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp (269761 => 269762)


--- trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2020-11-13 00:34:07 UTC (rev 269761)
+++ trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2020-11-13 03:15:44 UTC (rev 269762)
@@ -661,6 +661,7 @@
         return;
 
     ASSERT(hasPlatformContext());
+    UNUSED_PARAM(spacing);
     Cairo::drawPattern(*platformContext(), image.get(), IntSize(imageSize), destRect, tileRect, patternTransform, phase, options);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to