Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
43 // This checks that bitwise integer operations and array indexing by non-consts are allowed.
214 const GrGaussianConvolutionFragmentProcessor& that)
215 : INHERITED(that)
216 , fRadius(that.fRadius)
217 , fDirection(that.fDirection) {
218 memcpy(fKernel, that.fKernel, SkGpuBlurUtils::LinearKernelWidth(fRadius) * sizeof(float));
219 memcpy(fOffsets, that.fOffsets, SkGpuBlurUtils::LinearKernelWidth(fRadius) * sizeof(float));
242 const auto& that = sBase.cast<GrGaussianConvolutionFragmentProcessor>();
243 return fRadius == that.fRadius && fDirection == that.fDirection &&
244 std::equal(fKernel, fKernel + SkGpuBlurUtils::LinearKernelWidth(fRadius), that.fKernel) &&
245 std::equal(fOffsets, fOffsets + SkGpuBlurUtils::LinearKernelWidth(fRadius), that.fOffsets);