Home | History | Annotate | Download | only in effects

Lines Matching refs:conv

122     const GrGaussianConvolutionFragmentProcessor& conv =
124 GrTexture& texture = *conv.textureSampler(0).peekTexture();
128 switch (conv.direction()) {
139 if (conv.useBounds()) {
141 bounds[0] = conv.bounds()[0];
142 bounds[1] = conv.bounds()[1];
143 if (GrTextureDomain::kClamp_Mode == conv.mode()) {
147 if (Gr1DKernelEffect::kX_Direction == conv.direction()) {
159 int width = Gr1DKernelEffect::WidthFromRadius(conv.radius());
163 pdman.set4fv(fKernelUni, arrayCount, conv.kernel());
168 const GrGaussianConvolutionFragmentProcessor& conv =
170 uint32_t key = conv.radius();
172 key |= GrGaussianConvolutionFragmentProcessor::kY_Direction == conv.direction() ? 0x4 : 0x0;
173 key |= static_cast<uint32_t>(conv.mode());