Home
last modified time | relevance | path

Searched refs:IsEffectivelyZeroSigma (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/src/core/
DSkGpuBlurUtils.h94 inline bool IsEffectivelyZeroSigma(float sigma) { return sigma <= 0.03f; } in IsEffectivelyZeroSigma() function
97 return IsEffectivelyZeroSigma(sigma) ? 0 : static_cast<int>(ceilf(sigma * 3.0f)); in SigmaRadius()
DSkBlurMF.cpp832 if (SkGpuBlurUtils::IsEffectivelyZeroSigma(sigma)) { in make_circle_blur()
870 SkASSERT(!SkGpuBlurUtils::IsEffectivelyZeroSigma(sixSigma / 6.f)); in make_rect_integral_fp()
916 if (SkGpuBlurUtils::IsEffectivelyZeroSigma(transformedSigma)) { in make_rect_blur()
1046 SkASSERT(!SkGpuBlurUtils::IsEffectivelyZeroSigma(xformedSigma)); in make_blurred_rrect_key()
1072 SkASSERT(!SkGpuBlurUtils::IsEffectivelyZeroSigma(xformedSigma)); in fillin_view_on_gpu()
1185 SkASSERT(!SkGpuBlurUtils::IsEffectivelyZeroSigma(xformedSigma)); in create_mask_on_cpu()
1264 SkASSERT(!SkGpuBlurUtils::IsEffectivelyZeroSigma(xformedSigma)); in find_or_create_rrect_blur_mask_fp()
1355 if (SkGpuBlurUtils::IsEffectivelyZeroSigma(xformedSigma)) { in make_rrect_blur()
1465 if (SkGpuBlurUtils::IsEffectivelyZeroSigma(xformedSigma)) { in directFilterMaskGPU()
1572 if (SkGpuBlurUtils::IsEffectivelyZeroSigma(xformedSigma)) { in canFilterMaskGPU()
DSkGpuBlurUtils.cpp35 SkASSERT(!SkGpuBlurUtils::IsEffectivelyZeroSigma(sigmaX) && in fill_in_2D_gaussian_kernel()
36 !SkGpuBlurUtils::IsEffectivelyZeroSigma(sigmaY)); in fill_in_2D_gaussian_kernel()
78 SkASSERT(radius && !SkGpuBlurUtils::IsEffectivelyZeroSigma(sigma)); in convolve_gaussian_1d()
112 SkASSERT(!SkGpuBlurUtils::IsEffectivelyZeroSigma(sigmaX) && in convolve_gaussian_2d()
113 !SkGpuBlurUtils::IsEffectivelyZeroSigma(sigmaY)); in convolve_gaussian_2d()
164 SkASSERT(radius > 0 && !SkGpuBlurUtils::IsEffectivelyZeroSigma(sigma)); in convolve_gaussian()
845 if (SkGpuBlurUtils::IsEffectivelyZeroSigma(sigma)) { in Compute1DGaussianKernel()
/third_party/skia/src/gpu/effects/
DGrGaussianConvolutionFragmentProcessor.cpp153 bool is_zero_sigma = SkGpuBlurUtils::IsEffectivelyZeroSigma(gaussianSigma); in Make()
/third_party/skia/src/effects/imagefilters/
DSkBlurImageFilter.cpp964 if (SkGpuBlurUtils::IsEffectivelyZeroSigma(sigma.x()) && in gpuFilter()
965 SkGpuBlurUtils::IsEffectivelyZeroSigma(sigma.y())) { in gpuFilter()