Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/
DGrPipeline.h98 int numColorFragmentProcessors() const { return fNumColorProcessors; } in numColorFragmentProcessors()
99 bool isColorFragmentProcessor(int idx) const { return idx < fNumColorProcessors; } in isColorFragmentProcessor()
100 bool isCoverageFragmentProcessor(int idx) const { return idx >= fNumColorProcessors; } in isCoverageFragmentProcessor()
226 int fNumColorProcessors = 0; variable
DGrPipeline.cpp39 fNumColorProcessors = processors.hasColorFragmentProcessor() ? 1 : 0; in GrPipeline()
40 int numTotalProcessors = fNumColorProcessors + in GrPipeline()
/third_party/flutter/skia/src/gpu/
DGrPipeline.h120 int numColorFragmentProcessors() const { return fNumColorProcessors; } in numColorFragmentProcessors()
122 return fFragmentProcessors.count() - fNumColorProcessors; in numCoverageFragmentProcessors()
163 return *fFragmentProcessors[fNumColorProcessors + idx].get(); in getCoverageFragmentProcessor()
230 int fNumColorProcessors; variable
DGrPipeline.cpp50 fNumColorProcessors = processors.numColorFragmentProcessors(); in GrPipeline()
51 int numTotalProcessors = fNumColorProcessors + in GrPipeline()
92 , fNumColorProcessors(0) in GrPipeline()