Lines Matching defs:blur
24 static GrSurfaceProxyView blur(GrRecordingContext* ctx,
47 // Performs tiling first of the src into dst bounds with a surrounding skirt so the blur can use
89 // A blur of sigma1 followed by a blur of sigma2 is equiv. to a single blur of
269 // Draw the src subset in the tile mode faded as a reference before drawing the blur
281 // Do a blur for each dstRect in the set over our testArea-sized background.
285 auto blurFn = ref ? slow_blur : blur;
319 // confirmation that the resulting blur is the right size and in the right place.
369 // Because of the way blur sigmas concat (sigTotal = sqrt(sig1^2 + sig2^2) generating these images
370 // for very large sigmas is incredibly slow. This can be enabled while working on the blur code to
395 std::vector<decltype(blur)*> blurs;
396 blurs.push_back(blur);
408 paint.setColor4f(b == blur ? SkPMColor4f{0, 0, 1, 1} : SkPMColor4f{1, 0, 0, 1});