Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
210 GrBicubicEffect::GrBicubicEffect(const GrBicubicEffect& that)
211 : INHERITED(that)
212 , fKernel(that.fKernel)
213 , fDirection(that.fDirection)
214 , fClamp(that.fClamp) {}
233 const auto& that = other.cast<GrBicubicEffect>();
234 return fDirection == that.fDirection &&
235 fClamp == that.fClamp &&
236 fKernel.B == that.fKernel.B &&
237 fKernel.C == that.fKernel.C;