/external/skqp/src/core/ |
D | SkColorFilter.cpp | 98 return fOuter->getFlags() & fInner->getFlags(); in getFlags() 108 fOuter->appendStages(p, dst, scratch, innerIsOpaque); in onAppendStages() 115 auto outerFP = fOuter->asFragmentProcessor(context, dstColorSpaceInfo); in asFragmentProcessor() 126 buffer.writeFlattenable(fOuter.get()); in flatten() 135 : fOuter(std::move(outer)) in SkComposeColorFilter() 148 auto outer = xformer->apply(fOuter.get()); in onMakeColorSpace() 150 if (outer != fOuter || inner != fInner) { in onMakeColorSpace() 156 sk_sp<SkColorFilter> fOuter; member in SkComposeColorFilter
|
D | SkStroke.cpp | 145 dst->swap(fOuter); in done() 152 fOuter.isZeroLengthSincePoint(fFirstOuterPtIndexInContour); in isCurrentContourEmpty() 173 SkPath fInner, fOuter, fCusper; // outer is our working answer, inner is temp member in SkPathStroker 277 fOuter.moveTo(fFirstOuterPt.fX, fFirstOuterPt.fY); in preJoinTo() 280 fJoiner(&fOuter, &fInner, fPrevUnitNormal, fPrevPt, *unitNormal, in preJoinTo() 301 fJoiner(&fOuter, &fInner, fPrevUnitNormal, fPrevPt, in finishContour() 304 fOuter.close(); in finishContour() 309 if (fInner.getBounds().contains(fOuter.getBounds())) { in finishContour() 310 fInner.swap(fOuter); in finishContour() 315 fOuter.moveTo(pt.fX, pt.fY); in finishContour() [all …]
|
D | SkMaskFilter.cpp | 381 : fOuter(std::move(outer)) in SkComposeMF() 384 SkASSERT(as_MFB(fOuter)->getFormat() == SkMask::kA8_Format); in SkComposeMF() 393 as_MFB(fOuter)->computeFastBounds(tmp, dst); in computeFastBounds() 403 as_MFB(fOuter)->asFragmentProcessor(args), in onAsFragmentProcessor() 412 return as_MFB(fInner)->hasFragmentProcessor() && as_MFB(fOuter)->hasFragmentProcessor(); in onHasFragmentProcessor() 419 sk_sp<SkMaskFilter> fOuter; 437 if (!as_MFB(fOuter)->filterMask(dst, innerMask, ctm, margin)) { in filterMask() 449 buffer.writeFlattenable(fOuter.get()); in flatten()
|
/external/skia/samplecode/ |
D | SampleSimpleStroker.cpp | 101 PathRecorder fInner, fOuter; member in __anon22ae24220111::SkPathStroker2 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, *inner = &fInner; in join()
|
D | SampleVariableWidthStroker.cpp | 447 std::vector<PathSegment> fOuter; member 507 SkPath fInner, fOuter; member in __anondd06c43e0111::SkVarWidthStroker 517 fOuter.rewind(); in initForPath() 528 fOuter.moveTo(strokes.fOuter.front().fPoints[0]); in getFillPath() 532 for (const PathSegment& seg : strokes.fOuter) { in getFillPath() 533 fOuter.quadTo(seg.fPoints[1], seg.fPoints[2]); in getFillPath() 620 appendPathReversed(fInner, &fOuter); in getFillPath() 623 return fOuter; in getFillPath() 747 fOuter.close(); in endcap() 752 fOuter.lineTo(innerLastPt); in endcap() [all …]
|
/external/skqp/bench/ |
D | BlurRectsBench.cpp | 20 fOuter = outer; in BlurRectsBench() 37 path.addRect(fOuter, SkPath::kCW_Direction); in onDraw() 47 SkRect fOuter; member in BlurRectsBench
|
/external/skia/bench/ |
D | BlurRectsBench.cpp | 20 fOuter = outer; in BlurRectsBench() 37 path.addRect(fOuter, SkPathDirection::kCW); in onDraw() 47 SkRect fOuter; member in BlurRectsBench
|
/external/skia/src/core/ |
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.moveTo(pt.fX, pt.fY); in finishContour() [all …]
|
D | SkColorFilter.cpp | 140 return fOuter->isAlphaUnchanged() & fInner->isAlphaUnchanged(); in onIsAlphaUnchanged() 149 fOuter->appendStages(rec, innerIsOpaque); in onAppendStages() 156 return c ? fOuter->program(p, c, dstCS, uniforms, alloc) : skvm::Color{}; in onProgram() 172 fOuter->asFragmentProcessor(std::move(innerFP), context, dstColorInfo); in asFragmentProcessor() 188 buffer.writeFlattenable(fOuter.get()); in flatten() 194 : fOuter(as_CFB_sp(std::move(outer))) in SkComposeColorFilter() 198 sk_sp<SkColorFilterBase> fOuter; member in SkComposeColorFilter
|
/external/skia/src/ports/ |
D | SkRemotableFontMgr_win_dw.cpp | 233 : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character) { in FontFallbackRenderer() 250 HRM(fOuter->fFontCollection->GetFontFromFontFace(glyphRun->fontFace, &font), in DrawGlyphRun() 260 HR(fOuter->FontToIdentity(font.get(), &fIdentity)); in DrawGlyphRun() 350 sk_sp<const SkRemotableFontMgr_DirectWrite> fOuter; member in SkRemotableFontMgr_DirectWrite::FontFallbackRenderer
|
D | SkFontMgr_win_dw.cpp | 530 … : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character), fResolvedTypeface(nullptr) { in FontFallbackRenderer() 574 HRM(fOuter->fFontCollection->GetFontFromFontFace(glyphRun->fontFace, &font), in DrawGlyphRun() 586 fResolvedTypeface = fOuter->makeTypefaceFromDWriteFont(glyphRun->fontFace, in DrawGlyphRun() 652 sk_sp<const SkFontMgr_DirectWrite> fOuter; member in FontFallbackRenderer
|
/external/skqp/src/ports/ |
D | SkRemotableFontMgr_win_dw.cpp | 232 : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character) { in FontFallbackRenderer() 249 HRM(fOuter->fFontCollection->GetFontFromFontFace(glyphRun->fontFace, &font), in DrawGlyphRun() 259 HR(fOuter->FontToIdentity(font.get(), &fIdentity)); in DrawGlyphRun() 349 sk_sp<const SkRemotableFontMgr_DirectWrite> fOuter; member in SkRemotableFontMgr_DirectWrite::FontFallbackRenderer
|
D | SkFontMgr_win_dw.cpp | 522 … : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character), fResolvedTypeface(nullptr) { in FontFallbackRenderer() 538 HRM(fOuter->fFontCollection->GetFontFromFontFace(glyphRun->fontFace, &font), in DrawGlyphRun() 550 fResolvedTypeface = fOuter->makeTypefaceFromDWriteFont(glyphRun->fontFace, in DrawGlyphRun() 640 sk_sp<const SkFontMgr_DirectWrite> fOuter; member in FontFallbackRenderer
|
/external/skqp/tools/debugger/ |
D | SkDrawCommand.cpp | 1940 fOuter = outer; in SkDrawDRRectCommand() 1946 canvas->drawDRRect(fOuter, fInner, fPaint); in execute() 1950 render_drrect(canvas, fOuter, fInner); in render() 1956 writer.appendName(SKDEBUGCANVAS_ATTRIBUTE_OUTER); make_json_rrect(writer, fOuter); in toJSON()
|
D | SkDrawCommand.h | 584 SkRRect fOuter;
|
/external/skia/tools/debugger/ |
D | DrawCommand.cpp | 1813 fOuter = outer; in DrawDRRectCommand() 1819 canvas->drawDRRect(fOuter, fInner, fPaint); in execute() 1823 render_drrect(canvas, fOuter, fInner); in render() 1830 make_json_rrect(writer, fOuter); in toJSON()
|
D | DrawCommand.h | 556 SkRRect fOuter;
|
/external/skqp/samplecode/ |
D | SampleAAGeometry.cpp | 59 fOuter->dumpAll(); 1472 *outer = stroker.fOuter; in path_stroke()
|