Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/glsl/
DGrGLSLProgramBuilder.cpp203 const GrFragmentProcessor* childFP = fp.childProcessor(i); in writeChildFPFunctions() local
204 SkASSERT(childFP); in writeChildFPFunctions()
206 this->writeFPFunction(*childFP, *childImpl); in writeChildFPFunctions()
/third_party/skia/src/core/
DSkRuntimeEffect.cpp781 auto childFP = as_SB(child.shader())->asFragmentProcessor(childArgs); in make_effect_fp() local
782 if (!childFP) { in make_effect_fp()
785 childFPs.push_back(std::move(childFP)); in make_effect_fp()
788 auto [success, childFP] = as_CFB(child.colorFilter()) in make_effect_fp()
795 childFPs.push_back(std::move(childFP)); in make_effect_fp()
798 auto childFP = as_BB(child.blender())->asFragmentProcessor(/*srcFP=*/nullptr, in make_effect_fp() local
801 if (!childFP) { in make_effect_fp()
804 childFPs.push_back(std::move(childFP)); in make_effect_fp()
/third_party/skia/src/gpu/effects/
DGrSkSLFP.cpp280 for (auto& childFP : childFPs) { in MakeWithData() local
281 fp->addChild(std::move(childFP), /*mergeOptFlags=*/true); in MakeWithData()
/third_party/skia/src/gpu/
DGrFragmentProcessor.cpp98 if (const GrFragmentProcessor* childFP = fp.childProcessor(index)) { in recursive_dump_tree_info() local
99 text->append(childFP->dumpInfo()); in recursive_dump_tree_info()
101 recursive_dump_tree_info(*childFP, indent, text); in recursive_dump_tree_info()