Searched refs:fPoint (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawPoint.cpp18 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;
H A DSkDrawPoint.h21 SkPoint fPoint; member in struct:Sk_Point
29 SkPoint fPoint; member in class:SkDrawPoint
H A DSkDraw3D.cpp18 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);
H A DSkDraw3D.h23 SkPoint3D fPoint; member in struct:Sk3D_Point
/external/skia/src/animator/
H A DSkDrawPoint.cpp18 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;
H A DSkDrawPoint.h21 SkPoint fPoint; member in struct:Sk_Point
29 SkPoint fPoint; member in class:SkDrawPoint
H A DSkDraw3D.cpp18 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);
H A DSkDraw3D.h23 SkPoint3D fPoint; member in struct:Sk3D_Point
/external/chromium_org/third_party/skia/tests/
H A DGradientTest.cpp19 const SkPoint* fPoint; // 2 member in struct:GradRec
61 SkAutoTUnref<SkShader> s(SkGradientShader::CreateLinear(rec.fPoint,
69 REPORTER_ASSERT(reporter, !memcmp(info.fPoint, rec.fPoint, 2 * sizeof(SkPoint)));
73 SkAutoTUnref<SkShader> s(SkGradientShader::CreateRadial(rec.fPoint[0],
82 REPORTER_ASSERT(reporter, info.fPoint[0] == rec.fPoint[0]);
87 SkAutoTUnref<SkShader> s(SkGradientShader::CreateTwoPointRadial(rec.fPoint[0],
89 rec.fPoint[1],
98 REPORTER_ASSERT(reporter, !memcmp(info.fPoint, re
[all...]
/external/skia/tests/
H A DGradientTest.cpp20 const SkPoint* fPoint; // 2 member in struct:GradRec
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, re
[all...]
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFShader.cpp301 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;
842 transformPoints[0] = info->fPoint[0];
843 transformPoints[1] = info->fPoint[
[all...]
/external/skia/src/pdf/
H A DSkPDFShader.cpp301 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;
842 transformPoints[0] = info->fPoint[0];
843 transformPoints[1] = info->fPoint[
[all...]
/external/skia/src/effects/gradients/
H A DSkTwoPointConicalGradient.cpp334 info->fPoint[0] = fCenter1;
335 info->fPoint[1] = fCenter2;
339 SkTSwap(info->fPoint[0], info->fPoint[1]);
H A DSkLinearGradient.cpp275 info->fPoint[0] = fStart;
276 info->fPoint[1] = fEnd;
H A DSkSweepGradient.cpp40 info->fPoint[0] = fCenter;
H A DSkTwoPointRadialGradient.cpp215 info->fPoint[0] = fCenter1;
216 info->fPoint[1] = fCenter2;
H A DSkRadialGradient.cpp250 info->fPoint[0] = fCenter;
/external/chromium_org/third_party/skia/include/core/
H A DSkShader.h313 * The meaning of fPoint and fRadius is dependant on the type of gradient.
320 * fPoint[0] and fPoint[1] are the end-points of the gradient
322 * fPoint[0] and fRadius[0] are the center and radius
324 * fPoint[0] and fRadius[0] are the center and radius of the 1st circle
325 * fPoint[1] and fRadius[1] are the center and radius of the 2nd circle
327 * fPoint[0] is the center of the sweep.
348 SkPoint fPoint[2]; //!< Type specific, see above. member in struct:SkShader::GradientInfo
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkTwoPointConicalGradient.cpp334 info->fPoint[0] = fCenter1;
335 info->fPoint[1] = fCenter2;
339 SkTSwap(info->fPoint[0], info->fPoint[1]);
H A DSkLinearGradient.cpp289 info->fPoint[0] = fStart;
290 info->fPoint[1] = fEnd;
H A DSkSweepGradient.cpp39 info->fPoint[0] = fCenter;
H A DSkTwoPointRadialGradient.cpp215 info->fPoint[0] = fCenter1;
216 info->fPoint[1] = fCenter2;
/external/skia/include/core/
H A DSkShader.h320 * The meaning of fPoint and fRadius is dependant on the type of gradient.
327 * fPoint[0] and fPoint[1] are the end-points of the gradient
329 * fPoint[0] and fRadius[0] are the center and radius
331 * fPoint[0] and fRadius[0] are the center and radius of the 1st circle
332 * fPoint[1] and fRadius[1] are the center and radius of the 2nd circle
334 * fPoint[0] is the center of the sweep.
355 SkPoint fPoint[2]; //!< Type specific, see above. member in struct:SkShader::GradientInfo
/external/chromium_org/third_party/skia/src/device/xps/
H A DSkXPSDevice.cpp842 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);
916 centerPoint = xps_point(info.fPoint[0]);
917 gradientOrigin = xps_point(info.fPoint[0]);
921 centerPoint = xps_point(info.fPoint[0], localMatrix);
922 gradientOrigin = xps_point(info.fPoint[
[all...]
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp843 startPoint = xps_point(info.fPoint[0]);
844 endPoint = xps_point(info.fPoint[1]);
847 info.fPoint[0], info.fPoint[1],
849 startPoint = xps_point(info.fPoint[0], localMatrix);
850 endPoint = xps_point(info.fPoint[1], localMatrix);
917 centerPoint = xps_point(info.fPoint[0]);
918 gradientOrigin = xps_point(info.fPoint[0]);
922 centerPoint = xps_point(info.fPoint[0], localMatrix);
923 gradientOrigin = xps_point(info.fPoint[
[all...]

Completed in 392 milliseconds

12