Home
last modified time | relevance | path

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

/aosp_15_r20/external/skia/src/gpu/ganesh/
H A DGrPaint.h68 SkASSERT(fColorFragmentProcessor == nullptr); in setColorFragmentProcessor()
69 fColorFragmentProcessor = std::move(fp); in setColorFragmentProcessor()
83 bool hasColorFragmentProcessor() const { return fColorFragmentProcessor ? true : false; } in hasColorFragmentProcessor()
93 return fColorFragmentProcessor.get(); in getColorFragmentProcessor()
100 return (fColorFragmentProcessor && fColorFragmentProcessor->usesSampleCoords()) || in usesLocalCoords()
131 std::unique_ptr<GrFragmentProcessor> fColorFragmentProcessor; variable
H A DGrProcessorSet.cpp25 fColorFragmentProcessor = std::move(paint.fColorFragmentProcessor); in GrProcessorSet()
36 fColorFragmentProcessor = std::move(colorFP); in GrProcessorSet()
40 : fColorFragmentProcessor(std::move(that.fColorFragmentProcessor)) in GrProcessorSet()
123 GrColorFragmentProcessorAnalysis colorAnalysis(colorInput, &fColorFragmentProcessor, in finalize()
178 fColorFragmentProcessor = nullptr; in finalize()
200 fColorFragmentProcessor->visitProxies(func); in visitProxies()
H A DGrProcessorSet.h46 bool hasColorFragmentProcessor() const { return fColorFragmentProcessor != nullptr; } in hasColorFragmentProcessor()
50 return fColorFragmentProcessor.get(); in colorFragmentProcessor()
66 return std::move(fColorFragmentProcessor); in detachColorFragmentProcessor()
173 return (fColorFragmentProcessor ? 1 : 0) + (fCoverageFragmentProcessor ? 1 : 0); in numFragmentProcessors()
194 std::unique_ptr<GrFragmentProcessor> fColorFragmentProcessor; variable
H A DGrPaint.cpp18 if (that.fColorFragmentProcessor) { in GrPaint()
19 fColorFragmentProcessor = that.fColorFragmentProcessor->clone(); in GrPaint()
20 SkASSERT(fColorFragmentProcessor); in GrPaint()