HomeSort by relevance Sort by last modified time
    Searched refs:Sk2s (Results 1 - 5 of 5) sorted by null

  /external/skia/src/core/
SkGeometry.h 14 static inline Sk2s from_point(const SkPoint& point) {
15 return Sk2s::Load(&point);
18 static inline SkPoint to_point(const Sk2s& x) {
24 static Sk2s times_2(const Sk2s& value) {
275 SkQuadCoeff(const Sk2s& A, const Sk2s& B, const Sk2s& C)
284 Sk2s P1 = from_point(src[1]);
285 Sk2s P2 = from_point(src[2])
    [all...]
SkGeometry.cpp 12 static SkVector to_vector(const Sk2s& x) {
133 Sk2s P0 = from_point(src[0]);
134 Sk2s P1 = from_point(src[1]);
135 Sk2s P2 = from_point(src[2]);
137 Sk2s B = P1 - P0;
138 Sk2s A = P2 - P1 - B;
139 Sk2s T = A * Sk2s(t) + B;
144 static inline Sk2s interp(const Sk2s& v0, const Sk2s& v1, const Sk2s& t)
    [all...]
SkScan_Hairline.cpp 224 Sk2s t(0);
225 Sk2s dt(SK_Scalar1 / lines);
231 Sk2s A = coeff.fA;
232 Sk2s B = coeff.fB;
233 Sk2s C = coeff.fC;
242 static inline Sk2s abs(const Sk2s& value) {
243 return Sk2s::Max(value, Sk2s(0)-value);
246 static inline SkScalar max_component(const Sk2s& value)
    [all...]
SkNx.h 190 typedef SkNx<2, SkScalar> Sk2s;
  /external/skia/src/utils/
SkPatchUtils.cpp 52 Sk2s h = Sk2s(1.f / fDivisions);
53 Sk2s h2 = h * h;
54 Sk2s h3 = h2 * h;
55 Sk2s fwDiff3 = Sk2s(6) * fCoefs.fA * h3;

Completed in 62 milliseconds