Changeset 285798 in webkit
- Timestamp:
- Nov 14, 2021, 8:22:34 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/WebPage/wc/GraphicsLayerWC.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r285790 r285798 1 2021-11-14 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [GraphicsLayerWC] Incorrect compositing debug border color 4 https://bugs.webkit.org/show_bug.cgi?id=233107 5 6 Reviewed by Don Olmstead. 7 8 GraphicsLayer::updateDebugIndicators() should be called after 9 changing some layer properties. 10 11 * WebProcess/WebPage/wc/GraphicsLayerWC.cpp: 12 (WebKit::GraphicsLayerWC::setMasksToBounds): 13 (WebKit::GraphicsLayerWC::setDrawsContent): 14 (WebKit::GraphicsLayerWC::setContentsToPlatformLayer): 15 (WebKit::GraphicsLayerWC::setBackdropFilters): 16 Call updateDebugIndicators. 17 1 18 2021-11-14 Simon Fraser <simon.fraser@apple.com> 2 19 -
trunk/Source/WebKit/WebProcess/WebPage/wc/GraphicsLayerWC.cpp
r285099 r285798 214 214 GraphicsLayer::setMasksToBounds(value); 215 215 noteLayerPropertyChanged(WCLayerChange::MasksToBounds); 216 updateDebugIndicators(); 216 217 } 217 218 … … 246 247 GraphicsLayer::setDrawsContent(value); 247 248 noteLayerPropertyChanged(WCLayerChange::BackingStore); 249 updateDebugIndicators(); 248 250 } 249 251 … … 278 280 m_platformLayer = platformLayer; 279 281 noteLayerPropertyChanged(WCLayerChange::PlatformLayer); 282 updateDebugIndicators(); 280 283 } 281 284 … … 346 349 clearBackdropFilters(); 347 350 noteLayerPropertyChanged(WCLayerChange::BackdropFilters); 351 updateDebugIndicators(); 348 352 return canCompositeFilters; 349 353 }
Note:
See TracChangeset
for help on using the changeset viewer.