HomeSort by relevance Sort by last modified time
    Searched refs:fRadius (Results 26 - 35 of 35) sorted by null

12

  /external/skia/include/core/
SkShader.h 277 * The meaning of fPoint and fRadius is dependant on the type of gradient.
286 * fPoint[0] and fRadius[0] are the center and radius
288 * fPoint[0] and fRadius[0] are the center and radius of the 1st circle
289 * fPoint[1] and fRadius[1] are the center and radius of the 2nd circle
313 SkScalar fRadius[2]; //!< Type specific, see above.
  /external/skia/legacy/include/core/
SkShader.h 229 * The meaning of fPoint and fRadius is dependant on the type of gradient.
238 * fPoint[0] and fRadius[0] are the center and radius
240 * fPoint[0] and fRadius[0] are the center and radius of the 1st circle
241 * fPoint[1] and fRadius[1] are the center and radius of the 2nd circle
264 SkScalar fRadius[2]; //!< Type specific, see above.
  /external/skia/src/effects/gradients/
SkTwoPointConicalGradient.cpp 71 fRadius = SkScalarToFloat(rad0);
72 fDRadius = SkScalarToFloat(rad1) - fRadius;
75 fRadius2 = sqr(fRadius);
76 fRDR = fRadius * fDRadius;
105 float r = lerp(fRadius, fDRadius, t);
108 r = lerp(fRadius, fDRadius, t);
289 info->fRadius[0] = fRadius1;
290 info->fRadius[1] = fRadius2;
SkTwoPointRadialGradient.cpp 219 info->fRadius[0] = fRadius1;
220 info->fRadius[1] = fRadius2;
  /external/skia/tests/
BlurTest.cpp 115 REPORTER_ASSERT(reporter, info.fRadius == radius);
  /external/skia/legacy/src/effects/
SkGradientShader.cpp     [all...]
  /external/skia/legacy/src/core/
SkDraw.cpp 302 SkFixed fRadius;
396 const SkFixed radius = rec.fRadius;
413 const SkFixed radius = rec.fRadius;
440 fRadius = SK_Fixed1 >> 1;
456 fRadius = SkScalarToFixed(SkScalarMul(width, sx)) >> 1;
    [all...]
  /external/skia/src/core/
SkDraw.cpp 320 SkFixed fRadius;
434 const SkFixed radius = rec.fRadius;
451 const SkFixed radius = rec.fRadius;
478 fRadius = SK_FixedHalf;
494 fRadius = SkScalarToFixed(SkScalarMul(width, sx)) >> 1;
531 if (fRadius <= SK_FixedHalf) { // small radii and hairline
    [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp     [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp 735 SkScalar radius = info.fIgnoreTransform ? info.fRadius
736 : context->getMatrix().mapRadius(info.fRadius);
    [all...]

Completed in 566 milliseconds

12