/external/chromium_org/third_party/skia/src/animator/ |
SkDrawPoint.cpp | 18 SK_MEMBER_ALIAS(x, fPoint.fX, Float), 19 SK_MEMBER_ALIAS(y, fPoint.fY, Float) 29 SK_MEMBER_ALIAS(x, fPoint.fX, Float), 30 SK_MEMBER_ALIAS(y, fPoint.fY, Float) 38 fPoint.set(0, 0); 42 rect->fLeft = rect->fRight = fPoint.fX; 43 rect->fTop = rect->fBottom = fPoint.fY;
|
SkDrawPoint.h | 21 SkPoint fPoint; 29 SkPoint fPoint;
|
SkDraw3D.cpp | 18 SK_MEMBER_ALIAS(x, fPoint.fX, Float), 19 SK_MEMBER_ALIAS(y, fPoint.fY, Float), 20 SK_MEMBER_ALIAS(z, fPoint.fZ, Float) 28 fPoint.set(0, 0, 0);
|
SkDraw3D.h | 23 SkPoint3D fPoint;
|
/external/skia/src/animator/ |
SkDrawPoint.cpp | 18 SK_MEMBER_ALIAS(x, fPoint.fX, Float), 19 SK_MEMBER_ALIAS(y, fPoint.fY, Float) 29 SK_MEMBER_ALIAS(x, fPoint.fX, Float), 30 SK_MEMBER_ALIAS(y, fPoint.fY, Float) 38 fPoint.set(0, 0); 42 rect->fLeft = rect->fRight = fPoint.fX; 43 rect->fTop = rect->fBottom = fPoint.fY;
|
SkDrawPoint.h | 21 SkPoint fPoint; 29 SkPoint fPoint;
|
SkDraw3D.cpp | 18 SK_MEMBER_ALIAS(x, fPoint.fX, Float), 19 SK_MEMBER_ALIAS(y, fPoint.fY, Float), 20 SK_MEMBER_ALIAS(z, fPoint.fZ, Float) 28 fPoint.set(0, 0, 0);
|
SkDraw3D.h | 23 SkPoint3D fPoint;
|
/external/skia/tests/ |
GradientTest.cpp | 20 const SkPoint* fPoint; // 2 62 SkAutoTUnref<SkShader> s(SkGradientShader::CreateLinear(rec.fPoint, 70 REPORTER_ASSERT(reporter, !memcmp(info.fPoint, rec.fPoint, 2 * sizeof(SkPoint))); 74 SkAutoTUnref<SkShader> s(SkGradientShader::CreateRadial(rec.fPoint[0], 83 REPORTER_ASSERT(reporter, info.fPoint[0] == rec.fPoint[0]); 88 SkAutoTUnref<SkShader> s(SkGradientShader::CreateTwoPointRadial(rec.fPoint[0], 90 rec.fPoint[1], 99 REPORTER_ASSERT(reporter, !memcmp(info.fPoint, rec.fPoint, 2 * sizeof(SkPoint))) [all...] |
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFShader.cpp | 237 SkScalar dx = info.fPoint[0].fX - info.fPoint[1].fX; 238 SkScalar dy = info.fPoint[0].fY - info.fPoint[1].fY; 284 SkScalar dx = info.fPoint[1].fX - info.fPoint[0].fX; 285 SkScalar dy = info.fPoint[1].fY - info.fPoint[0].fY; 731 transformPoints[0] = info->fPoint[0]; 732 transformPoints[1] = info->fPoint[1] [all...] |
/external/skia/src/pdf/ |
SkPDFShader.cpp | 294 SkScalar dx = info.fPoint[0].fX - info.fPoint[1].fX; 295 SkScalar dy = info.fPoint[0].fY - info.fPoint[1].fY; 345 SkScalar dx = info.fPoint[1].fX - info.fPoint[0].fX; 346 SkScalar dy = info.fPoint[1].fY - info.fPoint[0].fY; 835 transformPoints[0] = info->fPoint[0]; 836 transformPoints[1] = info->fPoint[1] [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkShader.h | 277 * The meaning of fPoint and fRadius is dependant on the type of gradient. 284 * fPoint[0] and fPoint[1] are the end-points of the 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 291 * fPoint[0] is the center of the sweep. 312 SkPoint fPoint[2]; //!< Type specific, see above.
|
/external/skia/include/core/ |
SkShader.h | 277 * The meaning of fPoint and fRadius is dependant on the type of gradient. 284 * fPoint[0] and fPoint[1] are the end-points of the 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 291 * fPoint[0] is the center of the sweep. 312 SkPoint fPoint[2]; //!< Type specific, see above.
|
/external/chromium_org/third_party/skia/src/device/xps/ |
SkXPSDevice.cpp | 842 startPoint = xps_point(info.fPoint[0]); 843 endPoint = xps_point(info.fPoint[1]); 846 info.fPoint[0], info.fPoint[1], 848 startPoint = xps_point(info.fPoint[0], localMatrix); 849 endPoint = xps_point(info.fPoint[1], localMatrix); [all...] |
/external/skia/src/device/xps/ |
SkXPSDevice.cpp | 842 startPoint = xps_point(info.fPoint[0]); 843 endPoint = xps_point(info.fPoint[1]); 846 info.fPoint[0], info.fPoint[1], 848 startPoint = xps_point(info.fPoint[0], localMatrix); 849 endPoint = xps_point(info.fPoint[1], localMatrix); [all...] |
/external/chromium_org/third_party/skia/src/effects/gradients/ |
SkLinearGradient.cpp | 268 info->fPoint[0] = fStart; 269 info->fPoint[1] = fEnd;
|
SkTwoPointRadialGradient.cpp | 215 info->fPoint[0] = fCenter1; 216 info->fPoint[1] = fCenter2;
|
SkSweepGradient.cpp | 40 info->fPoint[0] = fCenter;
|
SkTwoPointConicalGradient.cpp | 304 info->fPoint[0] = fCenter1; 305 info->fPoint[1] = fCenter2;
|
SkRadialGradient.cpp | 243 info->fPoint[0] = fCenter;
|
/external/skia/src/effects/gradients/ |
SkLinearGradient.cpp | 268 info->fPoint[0] = fStart; 269 info->fPoint[1] = fEnd;
|
SkTwoPointRadialGradient.cpp | 215 info->fPoint[0] = fCenter1; 216 info->fPoint[1] = fCenter2;
|
SkSweepGradient.cpp | 40 info->fPoint[0] = fCenter;
|
SkTwoPointConicalGradient.cpp | 304 info->fPoint[0] = fCenter1; 305 info->fPoint[1] = fCenter2;
|
SkRadialGradient.cpp | 243 info->fPoint[0] = fCenter;
|