Lines Matching defs:ppt
30 fbZeroLine(DrawablePtr pDrawable, GCPtr pGC, int mode, int npt, DDXPointPtr ppt)
38 x1 = ppt->x;
39 y1 = ppt->y;
42 ++ppt;
43 x2 = ppt->x;
44 y2 = ppt->y;
76 fbFixCoordModePrevious(int npt, DDXPointPtr ppt)
80 x = ppt->x;
81 y = ppt->y;
84 ppt++;
85 x = (ppt->x += x);
86 y = (ppt->y += y);
91 fbPolyLine(DrawablePtr pDrawable, GCPtr pGC, int mode, int npt, DDXPointPtr ppt)
93 void (*line) (DrawablePtr, GCPtr, int mode, int npt, DDXPointPtr ppt);
119 (*line) (pDrawable, pGC, mode, npt, ppt);