Home
last modified time | relevance | path

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

/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
Dhorizontal_blur.rs7 float3 blurredPixel = 0;
12 blurredPixel += i->xyz * gPtr[0];
20 blurredPixel += i->xyz * gPtr[0];
25 out->xyz = blurredPixel;
Dvertical_blur.rs60 float3 blurredPixel = 0;
65 blurredPixel += i->xyz * gPtr[0];
72 blurredPixel += i->xyz * gPtr[0];
77 float3 temp = rsMatrixMultiply(&colorMat, blurredPixel);
/frameworks/base/libs/hwui/
DFontRenderer.cpp818 float blurredPixel = 0.0f; in horizontalBlur() local
827 blurredPixel = 0.0f; in horizontalBlur()
834 blurredPixel += currentPixel * gPtr[0]; in horizontalBlur()
850 blurredPixel += currentPixel * gPtr[0]; in horizontalBlur()
854 *output = (uint8_t)blurredPixel; in horizontalBlur()
862 float blurredPixel = 0.0f; in verticalBlur() local
870 blurredPixel = 0.0f; in verticalBlur()
878 blurredPixel += currentPixel * gPtr[0]; in verticalBlur()
895 blurredPixel += currentPixel * gPtr[0]; in verticalBlur()
899 *output = (uint8_t) blurredPixel; in verticalBlur()