HomeSort by relevance Sort by last modified time
    Searched defs:e2x (Results 1 - 2 of 2) sorted by null

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPathParser.java 559 double e2x = cx + (a * cosTheta * cosEta2) - (b * sinTheta * sinEta2); local
567 double q2x = e2x - alpha * ep2x;
570 p.cubicTo((float) q1x, (float) q1y, (float) q2x, (float) q2y, (float) e2x, (float) e2y);
572 e1x = e2x;
  /external/skia/src/gpu/ops/
GrQuadPerEdgeAA.cpp 192 Sk4f e2x = SkNx_shuffle<1, 1, 3, 3>(quad->fX) - SkNx_shuffle<0, 0, 2, 2>(quad->fX); local
195 correct_bad_edges(fma(e2x, e2x, e2y * e2y) < kTolerance * kTolerance, &e2x, &e2y, &e2w); local
198 // x2d = (x + a*e1x + b*e2x) / (w + a*e1w + b*e2w) and
204 Sk4f c2x = e2w * x2d - e2x;
249 quad->fX += a * e1x + b * e2x;
    [all...]

Completed in 306 milliseconds