Lines Matching refs:ComposeTwoFragmentProcessor
30 class ComposeTwoFragmentProcessor : public GrFragmentProcessor { class
36 new ComposeTwoFragmentProcessor(std::move(src), std::move(dst), mode)); in Make()
60 ComposeTwoFragmentProcessor(std::unique_ptr<GrFragmentProcessor> src, in ComposeTwoFragmentProcessor() function in ComposeTwoFragmentProcessor
147 const ComposeTwoFragmentProcessor& cs = other.cast<ComposeTwoFragmentProcessor>(); in onIsEqual()
180 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(ComposeTwoFragmentProcessor);
183 std::unique_ptr<GrFragmentProcessor> ComposeTwoFragmentProcessor::TestCreate( in TestCreate()
194 new ComposeTwoFragmentProcessor(std::move(fpA), std::move(fpB), mode)); in TestCreate()
198 std::unique_ptr<GrFragmentProcessor> ComposeTwoFragmentProcessor::clone() const { in clone()
202 new ComposeTwoFragmentProcessor(std::move(src), std::move(dst), fMode)); in clone()
205 GrGLSLFragmentProcessor* ComposeTwoFragmentProcessor::onCreateGLSLInstance() const{ in onCreateGLSLInstance()
214 const ComposeTwoFragmentProcessor& cs = args.fFp.cast<ComposeTwoFragmentProcessor>(); in emitCode()
257 return ComposeTwoFragmentProcessor::Make(std::move(src), std::move(dst), mode); in MakeFromTwoProcessors()