Title: [268546] trunk/Source/WebCore
- Revision
- 268546
- Author
- [email protected]
- Date
- 2020-10-15 12:48:05 -0700 (Thu, 15 Oct 2020)
Log Message
[WinCairo][GraphicsLayerTextureMapper] A parent layer's filter isn't applied to its child layer at the first paint
https://bugs.webkit.org/show_bug.cgi?id=217748
Reviewed by Don Olmstead.
* platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
(WebCore::GraphicsLayerTextureMapper::setFilters): Removed
unnecessary checking of m_layer.textureMapper().
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (268545 => 268546)
--- trunk/Source/WebCore/ChangeLog 2020-10-15 19:39:54 UTC (rev 268545)
+++ trunk/Source/WebCore/ChangeLog 2020-10-15 19:48:05 UTC (rev 268546)
@@ -1,3 +1,14 @@
+2020-10-15 Fujii Hironori <[email protected]>
+
+ [WinCairo][GraphicsLayerTextureMapper] A parent layer's filter isn't applied to its child layer at the first paint
+ https://bugs.webkit.org/show_bug.cgi?id=217748
+
+ Reviewed by Don Olmstead.
+
+ * platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
+ (WebCore::GraphicsLayerTextureMapper::setFilters): Removed
+ unnecessary checking of m_layer.textureMapper().
+
2020-10-15 Simon Fraser <[email protected]>
Scrolls in the passive event region only send one wheel event to the DOM
Modified: trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp (268545 => 268546)
--- trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp 2020-10-15 19:39:54 UTC (rev 268545)
+++ trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp 2020-10-15 19:48:05 UTC (rev 268546)
@@ -629,9 +629,6 @@
bool GraphicsLayerTextureMapper::setFilters(const FilterOperations& filters)
{
- if (!m_layer.textureMapper())
- return false;
-
bool canCompositeFilters = filtersCanBeComposited(filters);
if (GraphicsLayer::filters() == filters)
return canCompositeFilters;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes