HomeSort by relevance Sort by last modified time
    Searched defs:blurredPixel (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/hwui/utils/
Blur.cpp 96 float blurredPixel = 0.0f;
105 blurredPixel = 0.0f;
112 blurredPixel += currentPixel * gPtr[0];
128 blurredPixel += currentPixel * gPtr[0];
132 *output = (uint8_t)blurredPixel;
140 float blurredPixel = 0.0f;
147 blurredPixel = 0.0f;
155 blurredPixel += currentPixel * gPtr[0];
172 blurredPixel += currentPixel * gPtr[0];
176 *output = (uint8_t) blurredPixel;
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlur.cpp 118 float4 blurredPixel = 0;
124 blurredPixel += pf * gPtr[0];
128 out[0] = blurredPixel;
136 float blurredPixel = 0;
141 blurredPixel += pf * gPtr[0];
145 out[0] = blurredPixel;
183 float4 blurredPixel = 0;
188 blurredPixel += pf * gp[0];
192 out->xyzw = blurredPixel;
207 float blurredPixel = 0
    [all...]

Completed in 162 milliseconds