Title: [215447] trunk/Source/WebCore
- Revision
- 215447
- Author
- [email protected]
- Date
- 2017-04-17 20:21:36 -0700 (Mon, 17 Apr 2017)
Log Message
[WinCairo] 'WebCore::GraphicsLayerTextureMapper::flushCompositingStated': method with override specifier 'override' did not override any base class methods
https://bugs.webkit.org/show_bug.cgi?id=170928
Patch by Fujii Hironori <[email protected]> on 2017-04-17
Reviewed by Simon Fraser.
Apply the same change of CoordinatedGraphicsLayer.{cpp,h} of r215410 to GraphicsLayerTextureMapper.{cpp,h}.
* platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
(WebCore::GraphicsLayerTextureMapper::flushCompositingState): Added the second argument.
* platform/graphics/texmap/GraphicsLayerTextureMapper.h: Ditto.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (215446 => 215447)
--- trunk/Source/WebCore/ChangeLog 2017-04-18 02:37:18 UTC (rev 215446)
+++ trunk/Source/WebCore/ChangeLog 2017-04-18 03:21:36 UTC (rev 215447)
@@ -1,3 +1,16 @@
+2017-04-17 Fujii Hironori <[email protected]>
+
+ [WinCairo] 'WebCore::GraphicsLayerTextureMapper::flushCompositingStated': method with override specifier 'override' did not override any base class methods
+ https://bugs.webkit.org/show_bug.cgi?id=170928
+
+ Reviewed by Simon Fraser.
+
+ Apply the same change of CoordinatedGraphicsLayer.{cpp,h} of r215410 to GraphicsLayerTextureMapper.{cpp,h}.
+
+ * platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
+ (WebCore::GraphicsLayerTextureMapper::flushCompositingState): Added the second argument.
+ * platform/graphics/texmap/GraphicsLayerTextureMapper.h: Ditto.
+
2017-04-17 Timothy Horton <[email protected]>
Plumb all four obscured insets to WebCore, instead of just top/left
Modified: trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp (215446 => 215447)
--- trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp 2017-04-18 02:37:18 UTC (rev 215446)
+++ trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp 2017-04-18 03:21:36 UTC (rev 215447)
@@ -497,7 +497,7 @@
m_changeMask = NoChanges;
}
-void GraphicsLayerTextureMapper::flushCompositingState(const FloatRect& rect)
+void GraphicsLayerTextureMapper::flushCompositingState(const FloatRect& rect, FlushScope)
{
if (!m_layer.textureMapper())
return;
Modified: trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.h (215446 => 215447)
--- trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.h 2017-04-18 02:37:18 UTC (rev 215446)
+++ trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.h 2017-04-18 03:21:36 UTC (rev 215447)
@@ -83,7 +83,7 @@
void setDebugBorder(const Color&, float width) override;
void setShowRepaintCounter(bool) override;
- void flushCompositingState(const FloatRect&) override;
+ void flushCompositingState(const FloatRect&, FlushScope) override;
void flushCompositingStateForThisLayerOnly() override;
void updateBackingStoreIncludingSubLayers();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes