Lines Matching refs:GrAARectEffect
23 const GrAARectEffect& _outer = args.fFp.cast<GrAARectEffect>(); in emitCode()
63 const GrAARectEffect& _outer = _proc.cast<GrAARectEffect>(); in onSetData()
80 GrGLSLFragmentProcessor* GrAARectEffect::onCreateGLSLInstance() const { in onCreateGLSLInstance()
83 void GrAARectEffect::onGetGLSLProcessorKey(const GrShaderCaps& caps, in onGetGLSLProcessorKey()
87 bool GrAARectEffect::onIsEqual(const GrFragmentProcessor& other) const { in onIsEqual()
88 const GrAARectEffect& that = other.cast<GrAARectEffect>(); in onIsEqual()
94 GrAARectEffect::GrAARectEffect(const GrAARectEffect& src) in GrAARectEffect() function in GrAARectEffect
98 std::unique_ptr<GrFragmentProcessor> GrAARectEffect::clone() const { in clone()
99 return std::unique_ptr<GrFragmentProcessor>(new GrAARectEffect(*this)); in clone()
101 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrAARectEffect);
103 std::unique_ptr<GrFragmentProcessor> GrAARectEffect::TestCreate(GrProcessorTestData* d) { in TestCreate()
113 fp = GrAARectEffect::Make(edgeType, rect); in TestCreate()