| Index: sky/engine/core/rendering/RenderTreeAsText.cpp
|
| diff --git a/sky/engine/core/rendering/RenderTreeAsText.cpp b/sky/engine/core/rendering/RenderTreeAsText.cpp
|
| index 9f216f51460b50b9188e5ef920bc62a026d14424..80f171b9c946c93db16964ecf5b9c21de9095961 100644
|
| --- a/sky/engine/core/rendering/RenderTreeAsText.cpp
|
| +++ b/sky/engine/core/rendering/RenderTreeAsText.cpp
|
| @@ -385,9 +385,6 @@ static void write(TextStream& ts, RenderLayer& l,
|
| else if (paintPhase == LayerPaintPhaseForeground)
|
| ts << " layerType: foreground only";
|
|
|
| - if (l.renderer()->hasBlendMode())
|
| - ts << " blendMode: " << compositeOperatorName(CompositeSourceOver, l.renderer()->style()->blendMode());
|
| -
|
| if (behavior & RenderAsTextShowCompositedLayers) {
|
| if (l.hasCompositedLayerMapping()) {
|
| ts << " (composited, bounds="
|
| @@ -396,7 +393,6 @@ static void write(TextStream& ts, RenderLayer& l,
|
| << l.compositedLayerMapping()->mainGraphicsLayer()->drawsContent()
|
| << ", paints into ancestor="
|
| << l.compositedLayerMapping()->paintsIntoCompositedAncestor()
|
| - << (l.shouldIsolateCompositedDescendants() ? ", isolatesCompositedBlending" : "")
|
| << ")";
|
| }
|
| }
|
|
|