/third_party/skia/samplecode/ |
H A D | SampleSimpleStroker.cpp | 101 PathRecorder fInner, fOuter; member in __anon18654::SkPathStroker2 109 // Adds an endcap to fOuter 131 fOuter.rewind(); in initForPath() 174 appendPathReversed(fInner, &fOuter); in getFillPath() 177 return fOuter.getPath(); in getFillPath() 185 fOuter.moveTo(line.fPoints[0] + offset); in strokeLine() 188 fOuter.lineTo(line.fPoints[1] + offset); in strokeLine() 196 fOuter.close(); in endcap() 201 fOuter.lineTo(innerLastPt); in endcap() 225 PathRecorder *outer = &fOuter, *inne in join() [all...] |
H A D | SampleVariableWidthStroker.cpp | 447 std::vector<PathSegment> fOuter; 468 /** Adds an endcap to fOuter */ 507 SkPath fInner, fOuter; 517 fOuter.rewind(); 528 fOuter.moveTo(strokes.fOuter.front().fPoints[0]); 532 for (const PathSegment& seg : strokes.fOuter) { 533 fOuter.quadTo(seg.fPoints[1], seg.fPoints[2]); 620 appendPathReversed(fInner, &fOuter); 623 return fOuter; [all...] |
/third_party/skia/bench/ |
H A D | BlurRectsBench.cpp | 20 fOuter = outer; in BlurRectsBench() 37 path.addRect(fOuter, SkPathDirection::kCW); 47 SkRect fOuter; member in BlurRectsBench
|
/third_party/skia/src/core/ |
H A D | SkStroke.cpp | 178 dst->swap(fOuter); in done() 185 fOuter.isZeroLengthSincePoint(fFirstOuterPtIndexInContour); in isCurrentContourEmpty() 206 SkPath fInner, fOuter, fCusper; // outer is our working answer, inner is temp member in SkPathStroker 310 fOuter.moveTo(fFirstOuterPt.fX, fFirstOuterPt.fY); in preJoinTo() 313 fJoiner(&fOuter, &fInner, fPrevUnitNormal, fPrevPt, *unitNormal, in preJoinTo() 334 fJoiner(&fOuter, &fInner, fPrevUnitNormal, fPrevPt, in finishContour() 337 fOuter.close(); in finishContour() 342 if (fInner.getBounds().contains(fOuter.getBounds())) { in finishContour() 343 fInner.swap(fOuter); in finishContour() 348 fOuter in finishContour() [all...] |
H A D | SkColorFilter.cpp | 149 return fOuter->isAlphaUnchanged() && fInner->isAlphaUnchanged(); 158 fOuter->appendStages(rec, innerIsOpaque); 165 return c ? fOuter->program(p, c, dst, uniforms, alloc) : skvm::Color{}; 181 fOuter->asFragmentProcessor(std::move(innerFP), context, dstColorInfo); 197 buffer.writeFlattenable(fOuter.get()); 203 : fOuter(as_CFB_sp(std::move(outer))) in SkComposeColorFilter() 207 sk_sp<SkColorFilterBase> fOuter; member in SkComposeColorFilter
|
/third_party/skia/src/ports/ |
H A D | SkRemotableFontMgr_win_dw.cpp | 233 : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character) { in FontFallbackRenderer() 250 HRM(fOuter->fFontCollection->GetFontFromFontFace(glyphRun->fontFace, &font), 260 HR(fOuter->FontToIdentity(font.get(), &fIdentity)); 350 sk_sp<const SkRemotableFontMgr_DirectWrite> fOuter; member in SkRemotableFontMgr_DirectWrite::FontFallbackRenderer
|
H A D | SkFontMgr_win_dw.cpp | 591 : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character), fResolvedTypeface(nullptr) { in FontFallbackRenderer() 635 HRM(fOuter->fFontCollection->GetFontFromFontFace(glyphRun->fontFace, &font), 647 fResolvedTypeface = fOuter->makeTypefaceFromDWriteFont(glyphRun->fontFace, 717 sk_sp<const SkFontMgr_DirectWrite> fOuter; member in FontFallbackRenderer
|
/third_party/skia/tools/debugger/ |
H A D | DrawCommand.cpp | 1809 fOuter = outer; in DrawDRRectCommand() 1815 canvas->drawDRRect(fOuter, fInner, fPaint); in execute() 1819 render_drrect(canvas, fOuter, fInner); in render() 1826 make_json_rrect(writer, fOuter); in toJSON()
|
H A D | DrawCommand.h | 566 SkRRect fOuter; member in DrawDRRectCommand
|