Lines Matching refs:profileSize
39 uniform half profileSize;
45 unsigned int profileSize = SkScalarCeilToInt(6 * sigma);
50 builder[0] = profileSize;
56 SkImageInfo ii = SkImageInfo::MakeA8(profileSize, 1);
63 SkBlurMask::ComputeBlurProfile(bitmap.getAddr8(0, 0), profileSize, sigma);
123 float2 smallDims = float2(width - profileSize, height - profileSize);
124 float center = 2 * floor(profileSize / 2 + 0.25) - 1;
126 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize;
128 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize;
135 half2 smallDims = half2(width - profileSize, height - profileSize);
136 half center = 2 * floor(profileSize / 2 + 0.25) - 1;
138 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize;
140 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize;
147 pdman.set1f(profileSize, SkScalarCeilToScalar(6 * sigma));