Lines Matching refs:GrMatrixConvolutionEffect
39 const GrMatrixConvolutionEffect& mce = args.fFp.cast<GrMatrixConvolutionEffect>(); in emitCode()
117 const GrMatrixConvolutionEffect& m = processor.cast<GrMatrixConvolutionEffect>(); in GenKey()
127 const GrMatrixConvolutionEffect& conv = processor.cast<GrMatrixConvolutionEffect>(); in onSetData()
146 GrMatrixConvolutionEffect::GrMatrixConvolutionEffect(sk_sp<GrTextureProxy> srcProxy, in GrMatrixConvolutionEffect() function in GrMatrixConvolutionEffect
175 GrMatrixConvolutionEffect::GrMatrixConvolutionEffect(const GrMatrixConvolutionEffect& that) in GrMatrixConvolutionEffect() function in GrMatrixConvolutionEffect
190 std::unique_ptr<GrFragmentProcessor> GrMatrixConvolutionEffect::clone() const { in clone()
191 return std::unique_ptr<GrFragmentProcessor>(new GrMatrixConvolutionEffect(*this)); in clone()
194 void GrMatrixConvolutionEffect::onGetGLSLProcessorKey(const GrShaderCaps& caps, in onGetGLSLProcessorKey()
199 GrGLSLFragmentProcessor* GrMatrixConvolutionEffect::onCreateGLSLInstance() const { in onCreateGLSLInstance()
203 bool GrMatrixConvolutionEffect::onIsEqual(const GrFragmentProcessor& sBase) const { in onIsEqual()
204 const GrMatrixConvolutionEffect& s = sBase.cast<GrMatrixConvolutionEffect>(); in onIsEqual()
296 std::unique_ptr<GrFragmentProcessor> GrMatrixConvolutionEffect::MakeGaussian( in MakeGaussian()
312 new GrMatrixConvolutionEffect(std::move(srcProxy), srcBounds, kernelSize, kernel, in MakeGaussian()
316 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrMatrixConvolutionEffect);
319 std::unique_ptr<GrFragmentProcessor> GrMatrixConvolutionEffect::TestCreate(GrProcessorTestData* d) { in TestCreate()
342 return GrMatrixConvolutionEffect::Make(std::move(proxy), in TestCreate()