OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstPt
(Results
1 - 11
of
11
) sorted by null
/frameworks/base/core/jni/android/graphics/
Matrix.cpp
248
SkPoint srcPt[4],
dstPt
[4];
253
dstPt
[i].set(SkFloatToScalar(dst[x]), SkFloatToScalar(dst[y]));
255
return matrix->setPolyToPoly(srcPt,
dstPt
, ptCount);
281
SkPoint*
dstPt
= pts + ptCount;
290
matrix->mapPoints(
dstPt
, srcPt, ptCount);
292
matrix->mapVectors(
dstPt
, srcPt, ptCount);
295
dstArray[i << 1] = SkScalarToFloat(
dstPt
[i].fX);
296
dstArray[(i << 1) + 1] = SkScalarToFloat(
dstPt
[i].fY);
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsQuad.h
37
void align(int endIndex, SkDPoint*
dstPt
) const;
SkPathOpsCubic.h
36
void align(int endIndex, int ctrlIndex, SkDPoint*
dstPt
) const;
SkPathOpsQuad.cpp
231
void SkDQuad::align(int endIndex, SkDPoint*
dstPt
) const {
233
dstPt
->fX = fPts[endIndex].fX;
236
dstPt
->fY = fPts[endIndex].fY;
SkPathOpsCubic.cpp
421
void SkDCubic::align(int endIndex, int ctrlIndex, SkDPoint*
dstPt
) const {
423
dstPt
->fX = fPts[endIndex].fX;
426
dstPt
->fY = fPts[endIndex].fY;
/external/skia/src/pathops/
SkPathOpsQuad.h
37
void align(int endIndex, SkDPoint*
dstPt
) const;
SkPathOpsCubic.h
36
void align(int endIndex, int ctrlIndex, SkDPoint*
dstPt
) const;
SkPathOpsQuad.cpp
231
void SkDQuad::align(int endIndex, SkDPoint*
dstPt
) const {
233
dstPt
->fX = fPts[endIndex].fX;
236
dstPt
->fY = fPts[endIndex].fY;
SkPathOpsCubic.cpp
421
void SkDCubic::align(int endIndex, int ctrlIndex, SkDPoint*
dstPt
) const {
423
dstPt
->fX = fPts[endIndex].fX;
426
dstPt
->fY = fPts[endIndex].fY;
/external/chromium_org/third_party/skia/src/effects/
SkBicubicImageFilter.cpp
124
SkPoint srcPt,
dstPt
= SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
125
inverse.mapPoints(&srcPt, &
dstPt
, 1);
/external/skia/src/effects/
SkBicubicImageFilter.cpp
124
SkPoint srcPt,
dstPt
= SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
125
inverse.mapPoints(&srcPt, &
dstPt
, 1);
Completed in 835 milliseconds