Home
last modified time | relevance | path

Searched refs:fColorFragmentProcessors (Results 1 – 3 of 3) sorted by relevance

/external/skqp/src/gpu/
DGrPaint.cpp16 , fColorFragmentProcessors(that.fColorFragmentProcessors.count()) in GrPaint()
20 for (int i = 0; i < that.fColorFragmentProcessors.count(); ++i) { in GrPaint()
21 fColorFragmentProcessors.push_back(that.fColorFragmentProcessors[i]->clone()); in GrPaint()
22 SkASSERT(fColorFragmentProcessors[i]); in GrPaint()
DGrPaint.h67 fColorFragmentProcessors.push_back(std::move(fp)); in addColorFragmentProcessor()
90 int numColorFragmentProcessors() const { return fColorFragmentProcessors.count(); } in numColorFragmentProcessors()
98 return fColorFragmentProcessors[i].get(); in getColorFragmentProcessor()
131 SkSTArray<4, std::unique_ptr<GrFragmentProcessor>> fColorFragmentProcessors; variable
DGrProcessorSet.cpp30 for (auto& fp : paint.fColorFragmentProcessors) { in GrProcessorSet()