Home
last modified time | relevance | path

Searched refs:childFP (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/ganesh/glsl/
DGrGLSLProgramBuilder.cpp214 const GrFragmentProcessor* childFP = fp.childProcessor(i); in writeChildFPFunctions() local
215 SkASSERT(childFP); in writeChildFPFunctions()
217 this->writeFPFunction(*childFP, *childImpl); in writeChildFPFunctions()
/external/skia/src/core/
DSkRuntimeEffect.cpp1001 auto childFP = as_SB(child.shader())->asFragmentProcessor(childArgs, mRec); in make_effect_fp() local
1002 if (!childFP) { in make_effect_fp()
1005 childFPs.push_back(std::move(childFP)); in make_effect_fp()
1008 auto [success, childFP] = as_CFB(child.colorFilter()) in make_effect_fp()
1016 childFPs.push_back(std::move(childFP)); in make_effect_fp()
1019 auto childFP = as_BB(child.blender())->asFragmentProcessor( in make_effect_fp() local
1023 if (!childFP) { in make_effect_fp()
1026 childFPs.push_back(std::move(childFP)); in make_effect_fp()
/external/skia/src/gpu/ganesh/
DGrFragmentProcessor.cpp99 if (const GrFragmentProcessor* childFP = fp.childProcessor(index)) { in recursive_dump_tree_info() local
100 text->append(childFP->dumpInfo()); in recursive_dump_tree_info()
102 recursive_dump_tree_info(*childFP, indent, text); in recursive_dump_tree_info()
/external/skia/src/gpu/ganesh/effects/
DGrSkSLFP.cpp281 for (auto& childFP : childFPs) { in MakeWithData() local
282 fp->addChild(std::move(childFP), /*mergeOptFlags=*/true); in MakeWithData()