| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. |
| 3 * 2006 Rob Buis <buis@kde.org> | 3 * 2006 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2013 Google Inc. All rights reserved. | 5 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 6 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 6 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "core/platform/graphics/Path.h" | 31 #include "core/platform/graphics/Path.h" |
| 32 | 32 |
| 33 #include <math.h> | 33 #include <math.h> |
| 34 #include "core/platform/graphics/GraphicsContext.h" | 34 #include "core/platform/graphics/GraphicsContext.h" |
| 35 #include "core/platform/graphics/skia/SkiaUtils.h" | 35 #include "core/platform/graphics/skia/SkiaUtils.h" |
| 36 #include "platform/geometry/FloatPoint.h" | 36 #include "platform/geometry/FloatPoint.h" |
| 37 #include "platform/geometry/FloatRect.h" | 37 #include "platform/geometry/FloatRect.h" |
| 38 #include "platform/transforms/AffineTransform.h" | 38 #include "platform/transforms/AffineTransform.h" |
| 39 #include "third_party/skia/include/core/SkPath.h" | |
| 40 #include "third_party/skia/include/core/SkPathMeasure.h" | 39 #include "third_party/skia/include/core/SkPathMeasure.h" |
| 41 #include "third_party/skia/include/pathops/SkPathOps.h" | 40 #include "third_party/skia/include/pathops/SkPathOps.h" |
| 42 #include "wtf/MathExtras.h" | 41 #include "wtf/MathExtras.h" |
| 43 | 42 |
| 44 namespace WebCore { | 43 namespace WebCore { |
| 45 | 44 |
| 46 Path::Path() | 45 Path::Path() |
| 47 : m_path() | 46 : m_path() |
| 48 { | 47 { |
| 49 } | 48 } |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 { | 442 { |
| 444 m_path.offset(WebCoreFloatToSkScalar(size.width()), WebCoreFloatToSkScalar(s
ize.height())); | 443 m_path.offset(WebCoreFloatToSkScalar(size.width()), WebCoreFloatToSkScalar(s
ize.height())); |
| 445 } | 444 } |
| 446 | 445 |
| 447 bool Path::unionPath(const Path& other) | 446 bool Path::unionPath(const Path& other) |
| 448 { | 447 { |
| 449 return Op(m_path, other.m_path, kUnion_PathOp, &m_path); | 448 return Op(m_path, other.m_path, kUnion_PathOp, &m_path); |
| 450 } | 449 } |
| 451 | 450 |
| 452 } | 451 } |
| OLD | NEW |