Home
last modified time | relevance | path

Searched refs:fChildProcessors (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/src/gpu/
DGrFragmentProcessor.h194 for (const auto& child : fChildProcessors) { in addToKey()
201 int numChildProcessors() const { return fChildProcessors.count(); } in numChildProcessors()
204 GrFragmentProcessor* childProcessor(int index) { return fChildProcessors[index].get(); } in childProcessor()
206 return fChildProcessors[index].get(); in childProcessor()
466 SkSTArray<1, std::unique_ptr<GrFragmentProcessor>, true> fChildProcessors; variable
535 int numChildProcessors() const { return fChildProcessors.count(); } in numChildProcessors()
537 ProgramImpl* childProcessor(int index) const { return fChildProcessors[index].get(); } in childProcessor()
652 SkTArray<std::unique_ptr<ProgramImpl>, true> fChildProcessors; variable
DGrFragmentProcessor.cpp75 for (auto& child : fChildProcessors) { in visitTextureEffects()
134 impl->fChildProcessors.push_back_n(fChildProcessors.count()); in makeProgramImpl()
135 for (int i = 0; i < fChildProcessors.count(); ++i) { in makeProgramImpl()
136 impl->fChildProcessors[i] = fChildProcessors[i] ? fChildProcessors[i]->makeProgramImpl() in makeProgramImpl()
143 return std::count_if(fChildProcessors.begin(), fChildProcessors.end(), in numNonNullChildProcessors()
164 fChildProcessors.push_back(nullptr); in registerChild()
190 fChildProcessors.push_back(std::move(child)); in registerChild()