Home
last modified time | relevance | path

Searched refs:arcTo (Results 1 – 17 of 17) sorted by relevance

/external/webkit/WebCore/platform/graphics/skia/
DPathSkia.cpp115 m_path->arcTo(p1, p2, WebCoreFloatToSkScalar(radius)); in addArcTo()
138 m_path->arcTo(oval, startDegrees, 0, false); in addArc()
142 m_path->arcTo(oval, startDegrees + sweepDegrees, 0, true); in addArc()
154 m_path->arcTo(oval, startDegrees, sweepDegrees, false); in addArc()
DGraphicsContextSkia.cpp215 path->arcTo(r, SkIntToScalar(startAngle), SkIntToScalar(90), false); in addCornerArc()
/external/skia/include/core/
DSkPath.h332 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
338 void arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
344 void arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) { in arcTo() function
345 this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius); in arcTo()
/external/webkit/WebCore/platform/graphics/wince/
DPlatformPathWince.cpp515 addArcPoints(m_subpaths.last(), e.arcTo()); in addToSubpath()
769 , i->arcTo().m_end.m_x, i->arcTo().m_end.m_y in debugString()
770 , i->arcTo().m_center.m_x, i->arcTo().m_center.m_y in debugString()
771 , i->arcTo().m_radius.m_x, i->arcTo().m_radius.m_y in debugString()
772 , i->arcTo().m_clockwise? 'Y' : 'N'); in debugString()
DPlatformPathWince.h104 const ArcTo& arcTo() const { return m_data.m_arcToData; } in arcTo() function
/external/webkit/WebCore/platform/graphics/android/
DPathAndroid.cpp134 m_path->arcTo(SkFloatToScalar(p1.x()), SkFloatToScalar(p1.y()), in addArcTo()
195 m_path->arcTo(oval, startDegrees, sweepDegrees, false); in addArc()
/external/webkit/WebCore/html/canvas/
DCanvasRenderingContext2D.h132 void arcTo(float x0, float y0, float x1, float y1, float radius, ExceptionCode&);
DCanvasRenderingContext2D.idl71 void arcTo(in float x1, in float y1, in float x2, in float y2, in float radius)
DCanvasRenderingContext2D.cpp579 void CanvasRenderingContext2D::arcTo(float x0, float y0, float x1, float y1, float r, ExceptionCode… in arcTo() function in WebCore::CanvasRenderingContext2D
/external/skia/src/core/
DSkPath.cpp485 path->arcTo(r, start, sweep, forceMoveTo); in add_corner_arc()
623 void SkPath::arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, in arcTo() function in SkPath
670 void SkPath::arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, in arcTo() function in SkPath
DSkCanvas.cpp1399 path.arcTo(oval, startAngle, sweepAngle, !useCenter); in drawArc()
/external/webkit/WebCore/platform/graphics/qt/
DPathQt.cpp275 m_path.arcTo(xs, ys, width, height, sa, span); in addArc()
/external/webkit/WebCore/
DChangeLog-2009-06-1635141 Ported arcTo to Qt. Qt has no native support for arcTo. This changes
35142 calculate the behavior of arcTo and draws it with lineTo and arc.
35144 [QT] implement Canvas arcTo
59511 Add arcTo support for Cairo. This is needed by Canvas.
59512 Cairo has no native support for arcTo. We have to make our
59515 [Canvas] Cairo needs arcTo
64069 (WebCore::CanvasRenderingContext2D::arcTo):
DChangeLog-2006-05-102525 (WebCore::CanvasRenderingContext2D::arcTo): Ditto.
3951 (WebCore::CanvasRenderingContext2D::arcTo): Generate INDEX_SIZE_ERR exception
DChangeLog-2007-10-1440124 (WebCore::CanvasRenderingContext2D::arcTo):
40126 Correcting arc/arcTo to match the WHAT WG draft.
DChangeLog-2008-08-1025975 (WebCore::CanvasRenderingContext2D::arcTo):
43352 (WebCore::CanvasRenderingContext2D::arcTo):
DChangeLog-2006-12-3123498 (WebCore::CanvasRenderingContext2D::arcTo):