/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 | 21 const SkPoint* fPoint; // 2 63 SkAutoTUnref<SkShader> s(SkGradientShader::CreateLinear(rec.fPoint, 71 REPORTER_ASSERT(reporter, !memcmp(info.fPoint, rec.fPoint, 2 * sizeof(SkPoint))); 75 SkAutoTUnref<SkShader> s(SkGradientShader::CreateRadial(rec.fPoint[0], 84 REPORTER_ASSERT(reporter, info.fPoint[0] == rec.fPoint[0]); 89 SkAutoTUnref<SkShader> s(SkGradientShader::CreateTwoPointRadial(rec.fPoint[0], 91 rec.fPoint[1], 100 REPORTER_ASSERT(reporter, !memcmp(info.fPoint, rec.fPoint, 2 * sizeof(SkPoint))) [all...] |
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFShader.cpp | 301 SkScalar dx = info.fPoint[0].fX - info.fPoint[1].fX; 302 SkScalar dy = info.fPoint[0].fY - info.fPoint[1].fY; 352 SkScalar dx = info.fPoint[1].fX - info.fPoint[0].fX; 353 SkScalar dy = info.fPoint[1].fY - info.fPoint[0].fY; 844 transformPoints[0] = info->fPoint[0]; 845 transformPoints[1] = info->fPoint[1] [all...] |
/external/skia/src/pdf/ |
SkPDFShader.cpp | 301 SkScalar dx = info.fPoint[0].fX - info.fPoint[1].fX; 302 SkScalar dy = info.fPoint[0].fY - info.fPoint[1].fY; 352 SkScalar dx = info.fPoint[1].fX - info.fPoint[0].fX; 353 SkScalar dy = info.fPoint[1].fY - info.fPoint[0].fY; 844 transformPoints[0] = info->fPoint[0]; 845 transformPoints[1] = info->fPoint[1] [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkShader.h | 276 * The meaning of fPoint and fRadius is dependant on the type of gradient. 283 * fPoint[0] and fPoint[1] are the end-points of the gradient 285 * fPoint[0] and fRadius[0] are the center and radius 287 * fPoint[0] and fRadius[0] are the center and radius of the 1st circle 288 * fPoint[1] and fRadius[1] are the center and radius of the 2nd circle 290 * fPoint[0] is the center of the sweep. 311 SkPoint fPoint[2]; //!< Type specific, see above.
|
/external/skia/include/core/ |
SkShader.h | 276 * The meaning of fPoint and fRadius is dependant on the type of gradient. 283 * fPoint[0] and fPoint[1] are the end-points of the gradient 285 * fPoint[0] and fRadius[0] are the center and radius 287 * fPoint[0] and fRadius[0] are the center and radius of the 1st circle 288 * fPoint[1] and fRadius[1] are the center and radius of the 2nd circle 290 * fPoint[0] is the center of the sweep. 311 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 | 267 info->fPoint[0] = fStart; 268 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 | 236 info->fPoint[0] = fCenter;
|
/external/skia/src/effects/gradients/ |
SkLinearGradient.cpp | 267 info->fPoint[0] = fStart; 268 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 | 236 info->fPoint[0] = fCenter;
|