Home
last modified time | relevance | path

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

/third_party/skia/src/core/
DSkGpuBlurUtils.cpp892 int halfradius = halfsize / 2; in Compute1DLinearGaussianKernel() local
893 int low_index = halfradius - 1; in Compute1DLinearGaussianKernel()
908 get_new_weight(&kernel[halfradius], &offset[halfradius], in Compute1DLinearGaussianKernel()
910 kernel[low_index] = kernel[halfradius]; in Compute1DLinearGaussianKernel()
911 offset[low_index] = -offset[halfradius]; in Compute1DLinearGaussianKernel()
917 kernel[halfradius] = temp_kernel[index]; in Compute1DLinearGaussianKernel()
918 offset[halfradius] = 0.0f; in Compute1DLinearGaussianKernel()
923 for (int i = halfradius + 1; i < halfsize; index += 2, i++, low_index--) { in Compute1DLinearGaussianKernel()