Lines Matching defs:Vertex
148 struct Vertex { struct
149 Vertex(const SkPoint& point, uint8_t alpha) in Vertex() argument
160 SkPoint fPoint; // Vertex position
161 Vertex* fPrev; // Linked list of contours, then Y-sorted vertices.
162 Vertex* fNext; // "
163 Edge* fFirstEdgeAbove; // Linked list of edges above this vertex.
164 Edge* fLastEdgeAbove; // "
165 Edge* fFirstEdgeBelow; // Linked list of edges below this vertex.
166 Edge* fLastEdgeBelow; // "
167 Edge* fLeftEnclosingEdge; // Nearest edge in the AEL left of this vertex.
168 Edge* fRightEnclosingEdge; // Nearest edge in the AEL right of this vertex.
169 Vertex* fPartner; // Corresponding inner or outer vertex (for AA).
170 uint8_t fAlpha;
172 float fID; // Identifier used for logging.