HomeSort by relevance Sort by last modified time
    Searched defs:cubic (Results 1 - 4 of 4) sorted by null

  /external/skia/gpu/src/
GrDrawMesh.cpp 119 SkCubicBoundary cubic; local
120 set_cubic(cubic.fPts + 0, 0, 0, w, 0, scale);
121 set_cubic(cubic.fPts + 3, w, 0, w, h, scale);
122 set_cubic(cubic.fPts + 6, w, h, 0, h, -scale);
123 set_cubic(cubic.fPts + 9, 0, h, 0, 0, scale);
126 patch.setBoundary(&cubic);
  /external/webkit/Source/WebCore/svg/
SVGPathSegListSource.cpp 102 SVGPathSegCurvetoCubic* cubic = static_cast<SVGPathSegCurvetoCubic*>(m_segment.get()); local
103 point1 = FloatPoint(cubic->x1(), cubic->y1());
104 point2 = FloatPoint(cubic->x2(), cubic->y2());
105 targetPoint = FloatPoint(cubic->x(), cubic->y());
  /external/skia/samplecode/
SampleWarp.cpp 127 SkCubicBoundary cubic; local
128 set_cubic(cubic.fPts + 0, 0, 0, 100, 0, scale);
129 set_cubic(cubic.fPts + 3, 100, 0, 100, 100, scale);
130 set_cubic(cubic.fPts + 6, 100, 100, 0, 100, -scale);
131 set_cubic(cubic.fPts + 9, 0, 100, 0, 0, 0);
134 patch.setBoundary(&cubic);
155 SkCubicBoundary cubic; local
156 set_cubic(cubic.fPts + 0, 0, 0, 100, 0, 0);
157 set_cubic(cubic.fPts + 3, 100, 0, 100, 100, 0);
158 set_cubic(cubic.fPts + 6, 100, 100, 0, 100, 0)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 127 // Describes a segment of the path: either a cubic or a line segment.
135 Cubic,
142 , m_kind(Cubic)
151 // Initializer for cubic curve segments.
161 m_kind = Cubic;
246 if (m_kind == Cubic)
254 // segment. This operation only makes sense for cubic type segments.
277 // can be called either for line or cubic type segments.
280 if (m_kind == Cubic) {
294 if (m_kind == Cubic) {
667 SkPoint cubic[4]; local
    [all...]

Completed in 44 milliseconds