Home
last modified time | relevance | path

Searched defs:DPoint (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/skia/src/base/
H A DSkBezierCurves.cpp117 struct DPoint { struct
118 DPoint(double x_, double y_) : x{x_}, y{y_} {} in DPoint() argument
119 DPoint(SkPoint p) : x{p.fX}, y{p.fY} {} in DPoint() function
120 double x, y;
/aosp_15_r20/external/skia/src/gpu/ganesh/
H A DGrDistanceFieldGenFromVector.cpp37 struct DPoint { struct
38 double fX, fY;
40 double distanceSquared(DPoint p) const { in distanceSquared()
46 double distance(DPoint p) const { return sqrt(this->distanceSquared(p)); } in distance()