/third_party/skia/src/core/ |
D | SkStrokeRec.cpp | 23 SkStrokeRec::SkStrokeRec(const SkPaint& paint, SkScalar resScale) { in SkStrokeRec() argument 24 this->init(paint, paint.getStyle(), resScale); in SkStrokeRec() 27 SkStrokeRec::SkStrokeRec(const SkPaint& paint, SkPaint::Style styleOverride, SkScalar resScale) { in SkStrokeRec() argument 28 this->init(paint, styleOverride, resScale); in SkStrokeRec() 31 void SkStrokeRec::init(const SkPaint& paint, SkPaint::Style style, SkScalar resScale) { in init() argument 32 fResScale = resScale; in init()
|
D | SkPathMeasure.cpp | 13 SkPathMeasure::SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale) in SkPathMeasure() argument 14 : fIter(path, forceClosed, resScale) in SkPathMeasure()
|
D | SkPaint.cpp | 369 SkScalar resScale) const { in getFillPath() 370 return this->getFillPath(src, dst, cullRect, SkMatrix::Scale(resScale, resScale)); in getFillPath() 380 const SkScalar resScale = SkPaintPriv::ComputeResScaleForStroking(ctm); in getFillPath() local 381 SkStrokeRec rec(*this, resScale); in getFillPath()
|
D | SkContourMeasure.cpp | 177 Impl(const SkPath& path, bool forceClosed, SkScalar resScale) in Impl() argument 180 , fTolerance(CHEAP_DIST_LIMIT * SkScalarInvert(resScale)) in Impl() 478 SkScalar resScale) { in SkContourMeasureIter() argument 479 this->reset(path, forceClosed, resScale); in SkContourMeasureIter() 486 void SkContourMeasureIter::reset(const SkPath& path, bool forceClosed, SkScalar resScale) { in reset() argument 488 fImpl = std::make_unique<Impl>(path, forceClosed, resScale); in reset()
|
D | SkStroke.cpp | 163 SkPaint::Join, SkScalar resScale, 379 SkPaint::Cap cap, SkPaint::Join join, SkScalar resScale, in SkPathStroker() argument 382 , fResScale(resScale) in SkPathStroker() 415 fInvResScale = SkScalarInvert(resScale * 4); in SkPathStroker()
|
/third_party/skia/experimental/docs/ |
D | canvasBackend.js | 157 var resScale = window.devicePixelRatio ? window.devicePixelRatio : 1; 160 canvas.width = unscaledWidth * resScale; 161 canvas.height = unscaledHeight * resScale; 164 if (resScale != 1) { 165 ctx.scale(resScale, resScale);
|
/third_party/skia/include/core/ |
D | SkStrokeRec.h | 24 SkStrokeRec(const SkPaint&, SkPaint::Style, SkScalar resScale = 1); 25 explicit SkStrokeRec(const SkPaint&, SkScalar resScale = 1); 137 void init(const SkPaint&, SkPaint::Style, SkScalar resScale);
|
D | SkContourMeasure.h | 102 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 110 void reset(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
|
D | SkPathMeasure.h | 24 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
|
D | SkPaint.h | 393 SkScalar resScale = 1) const;
|
/third_party/skia/src/gpu/ |
D | GrStyle.cpp | 164 const SkPath &src, SkScalar resScale) const { in applyPathEffectToPath() 167 strokeRec.setResScale(resScale); in applyPathEffectToPath() 176 SkScalar resScale) const { in applyToPath() 180 strokeRec.setResScale(resScale); in applyToPath()
|
/third_party/skia/fuzz/ |
D | FuzzPathMeasure.cpp | 28 SkScalar resScale = maxDim / 1000; in DEF_FUZZ() local 29 SkPathMeasure measure(path, bits & 1, resScale); in DEF_FUZZ()
|
/third_party/skia/modules/canvaskit/npm_build/types/ |
D | index.d.ts | 3177 new (path: Path, forceClosed: boolean, resScale: number): ContourMeasureIter;
|
/third_party/skia/tools/fiddle/ |
D | documumentation_examples_map.txt | 2025 bool getFillPath(const SkPath& src, SkPath* dst, const SkRect* cullRect, SkScalar resScale = 1) con…
|