Searched refs:gaussian (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
H A DFontRenderer.cpp628 // Compute gaussian weights for the blur
638 // The larger the radius gets, the more our gaussian blur
640 // the gaussian curve begins to lose its shape
754 float *gaussian = new float[2 * radius + 1]; local
755 computeGaussianWeights(gaussian, radius);
759 horizontalBlur(gaussian, radius, image, scratch, width, height);
760 verticalBlur(gaussian, radius, scratch, image, width, height);
762 delete[] gaussian;

Completed in 370 milliseconds