| // Copyright 2015 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "platform/graphics/paint/ClipPathDisplayItem.h" |
| |
| #include "platform/graphics/GraphicsContext.h" |
| #include "platform/graphics/Path.h" |
| #include "public/platform/WebDisplayItemList.h" |
| #include "third_party/skia/include/core/SkPictureAnalyzer.h" |
| #include "third_party/skia/include/core/SkScalar.h" |
| |
| namespace blink { |
| |
| void BeginClipPathDisplayItem::Replay(GraphicsContext& context) const { |
| context.Save(); |
| context.ClipPath(clip_path_, kAntiAliased); |
| } |
| |
| void BeginClipPathDisplayItem::AppendToWebDisplayItemList( |
| const LayoutSize&, |
| WebDisplayItemList* list) const { |
| list->AppendClipPathItem(clip_path_, true); |
| } |
| |
| void EndClipPathDisplayItem::Replay(GraphicsContext& context) const { |
| context.Restore(); |
| } |
| |
| void EndClipPathDisplayItem::AppendToWebDisplayItemList( |
| const LayoutSize&, |
| WebDisplayItemList* list) const { |
| list->AppendEndClipPathItem(); |
| } |
| |
| #if DCHECK_IS_ON() |
| void BeginClipPathDisplayItem::PropertiesAsJSON(JSONObject& json) const { |
| DisplayItem::PropertiesAsJSON(json); |
| json.SetInteger("pathVerbs", clip_path_.countVerbs()); |
| json.SetInteger("pathPoints", clip_path_.countPoints()); |
| json.SetString("windRule", |
| clip_path_.getFillType() == SkPath::kWinding_FillType |
| ? "nonzero" |
| : "evenodd"); |
| } |
| |
| #endif |
| |
| } // namespace blink |