Searched refs:fDY (Results 1 - 7 of 7) sorted by relevance
/third_party/skia/gm/ |
H A D | smallpaths.cpp | 326 SkScalar fDY[N]; member in SmallPathsGM 332 fDY[i] = dy; 352 canvas->translate(gXTranslate[i], fDY[i]); 365 canvas->translate(gXTranslate[i], fDY[i]); 378 canvas->translate(gXTranslate[i], fDY[i]); 390 canvas->translate(gXTranslate[i], fDY[i]);
|
H A D | pathfill.cpp | 301 SkScalar fDY[N]; member in PathFillGM 310 fDY[i] = dy; 333 canvas->translate(SkIntToScalar(0), fDY[i]); 358 SkScalar fDY[N]; member in PathInverseFillGM 364 fDY[i] = dy;
|
/third_party/skia/src/core/ |
H A D | SkScan_AAAPath.cpp | 1289 leftE->fDY, 1290 riteE->fDY, 1315 leftE->fDY, 1316 riteE->fDY, 1346 leftE->fDY, 1347 riteE->fDY, 1500 SkFixed leftDY, // don't save leftE->fX/fDY as they may have been updated 1533 riteE->saveXY(riteE->fX, y, riteE->fDY); 1720 currE->fDY, 1733 leftDY = currE->fDY; [all...] |
H A D | SkAnalyticEdge.h | 37 SkFixed fDY; // abs(1/fDX); may be SK_MaxS32 when fDX is close to 0. member 38 // fDY is only used for blitting trapezoids.
|
H A D | SkAnalyticEdge.cpp | 270 fDY = dx == 0 || slope == 0 ? SK_MaxS32 : absSlope < kInverseTableSize in setLine() 282 // Moreover, we'll compute fDY by quickly lookup the inverse table (if possible). 318 fDY = (dx == 0 || slope == 0)
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrQuadUtils.cpp | 674 fDY = next_ccw(fY2D) - fY2D; in reset() 675 fInvLengths = 1.f / sqrt(fDX*fDX + fDY*fDY); in reset() 679 fDY *= fInvLengths; in reset() 686 fCosTheta = fDX*next_cw(fDX) + fDY*next_cw(fDY); in reset() 697 V4f dy = edgeVectors.fDY; in reset() 988 fY += signedOutsetsCW * next_cw(edgeVectors.fDY) + signedOutsets * edgeVectors.fDY;
|
H A D | GrQuadUtils.h | 111 skvx::Vec<4, float> fDX, fDY; member
|
Completed in 9 milliseconds