Home
last modified time | relevance | path

Searched refs:skPath (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/gpu/gl/
DGrGLPath.cpp92 const SkPath& skPath) { in init_path_object_for_general_path() argument
94 int verbCnt = skPath.countVerbs(); in init_path_object_for_general_path()
95 int pointCnt = skPath.countPoints(); in init_path_object_for_general_path()
102 SkPath::RawIter iter(skPath); in init_path_object_for_general_path()
202 const SkPath& skPath) { in InitPathObjectPathDataCheckingDegenerates() argument
203 return init_path_object_for_general_path<true>(gpu, pathID, skPath); in InitPathObjectPathDataCheckingDegenerates()
208 const SkPath& skPath) { in InitPathObjectPathData() argument
209 SkASSERT(!skPath.isEmpty()); in InitPathObjectPathData()
213 if ((skPath.getSegmentMasks() & SkPath::kConic_SegmentMask) == 0) { in InitPathObjectPathData()
214 int verbCnt = skPath.countVerbs(); in InitPathObjectPathData()
[all …]
DGrGLPathRange.cpp71 const SkPath* skPath = &origSkPath; in onInitPath() local
82 if (!stroke->applyDashToPath(tmpPath.init(), &tmpStroke, *skPath)) { in onInitPath()
85 skPath = tmpPath.get(); in onInitPath()
96 GrGLPath::InitPathObjectPathData(gpu, fBasePathID + index, *skPath); in onInitPath()
/external/skia/src/gpu/batches/
DGrStencilAndCoverPathRenderer.cpp48 static GrPath* get_gr_path(GrResourceProvider* resourceProvider, const SkPath& skPath, in get_gr_path() argument
52 GrPath::ComputeKey(skPath, stroke, &key, &isVolatile); in get_gr_path()
56 path.reset(resourceProvider->createPath(skPath, stroke)); in get_gr_path()
61 SkASSERT(path->isEqualTo(skPath, stroke)); in get_gr_path()
/external/skia/src/gpu/
DGrPath.h22 GrPath(GrGpu* gpu, const SkPath& skPath, const GrStrokeInfo& stroke) in GrPath() argument
27 , fSkPath(skPath) in GrPath()
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.h130 virtual FX_BOOL RenderRasterizerSkia(SkPath& skPath,
140 void SetClipMask(SkPath& skPath, SkPaint* spaint);
Dfx_skia_device.cpp298 void CFX_SkiaDeviceDriver::SetClipMask(SkPath& skPath, SkPaint* spaint) { in SetClipMask() argument
307 SkPath* pathPtr = &skPath; in SetClipMask()
309 SkRect path_rect = skPath.getBounds(); in SetClipMask()
323 SuperBlitter_skia::DrawPath(skPath, (SkBlitter*)&render, rasterClip, *spaint); in SetClipMask()
405 FX_BOOL CFX_SkiaDeviceDriver::RenderRasterizerSkia(SkPath& skPath, in RenderRasterizerSkia() argument
422 SuperBlitter_skia::DrawPath(skPath, (SkBlitter*)&render, rasterClip, in RenderRasterizerSkia()
/external/skia/experimental/SkV8Example/
DPath2DBuilder.cpp254 SkPath* skPath = new SkPath(path->fSkPath); in Finalize() local
258 Path2D* pathWrap = new Path2D(skPath); in Finalize()
/external/skia/src/ports/
DSkFontHost_mac.cpp1423 SkPath* skPath = (SkPath*)info; in CTPathElement() local
1428 skPath->moveTo(element->points[0].x, -element->points[0].y); in CTPathElement()
1432 skPath->lineTo(element->points[0].x, -element->points[0].y); in CTPathElement()
1436 skPath->quadTo(element->points[0].x, -element->points[0].y, in CTPathElement()
1441 skPath->cubicTo(element->points[0].x, -element->points[0].y, in CTPathElement()
1447 skPath->close(); in CTPathElement()