Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkGpuBlurUtils.cpp875 int halfradius = halfsize / 2; in Compute1DLinearGaussianKernel() local
876 int low_index = halfradius - 1; in Compute1DLinearGaussianKernel()
891 get_new_weight(&kernel[halfradius], &offset[halfradius], in Compute1DLinearGaussianKernel()
893 kernel[low_index] = kernel[halfradius]; in Compute1DLinearGaussianKernel()
894 offset[low_index] = -offset[halfradius]; in Compute1DLinearGaussianKernel()
900 kernel[halfradius] = temp_kernel[index]; in Compute1DLinearGaussianKernel()
901 offset[halfradius] = 0.0f; in Compute1DLinearGaussianKernel()
906 for (int i = halfradius + 1; i < halfsize; index += 2, i++, low_index--) { in Compute1DLinearGaussianKernel()