Searched refs:fColorFragmentProcessor (Results 1 – 4 of 4) sorted by relevance
67 SkASSERT(fColorFragmentProcessor == nullptr); in setColorFragmentProcessor()68 fColorFragmentProcessor = std::move(fp); in setColorFragmentProcessor()82 bool hasColorFragmentProcessor() const { return fColorFragmentProcessor ? true : false; } in hasColorFragmentProcessor()92 return fColorFragmentProcessor.get(); in getColorFragmentProcessor()99 return (fColorFragmentProcessor && fColorFragmentProcessor->usesSampleCoords()) || in usesLocalCoords()130 std::unique_ptr<GrFragmentProcessor> fColorFragmentProcessor; variable
26 fColorFragmentProcessor = std::move(paint.fColorFragmentProcessor); in GrProcessorSet()37 fColorFragmentProcessor = std::move(colorFP); in GrProcessorSet()41 : fColorFragmentProcessor(std::move(that.fColorFragmentProcessor)) in GrProcessorSet()124 GrColorFragmentProcessorAnalysis colorAnalysis(colorInput, &fColorFragmentProcessor, in finalize()179 fColorFragmentProcessor = nullptr; in finalize()201 fColorFragmentProcessor->visitProxies(func); in visitProxies()
18 if (that.fColorFragmentProcessor) { in GrPaint()19 fColorFragmentProcessor = that.fColorFragmentProcessor->clone(); in GrPaint()20 SkASSERT(fColorFragmentProcessor); in GrPaint()
36 bool hasColorFragmentProcessor() const { return fColorFragmentProcessor != nullptr; } in hasColorFragmentProcessor()40 return fColorFragmentProcessor.get(); in colorFragmentProcessor()56 return std::move(fColorFragmentProcessor); in detachColorFragmentProcessor()163 return (fColorFragmentProcessor ? 1 : 0) + (fCoverageFragmentProcessor ? 1 : 0); in numFragmentProcessors()184 std::unique_ptr<GrFragmentProcessor> fColorFragmentProcessor; variable