Lines Matching refs:poly
48 XPoint poly[4];
78 poly[0].x = x + size; poly[0].y = y;
79 poly[1].x = x + size-d31; poly[1].y = y;
80 poly[2].x = x + 0; poly[2].y = y + size;
81 poly[3].x = x + d31; poly[3].y = y + size;
82 XFillPolygon(dpy, drawable, gcFore, poly, 4, Convex, CoordModeOrigin);
95 poly[0].x = x + d31/2; poly[0].y = y + size;
96 poly[1].x = x + size / 2; poly[1].y = y + size/2;
97 poly[2].x = x + (size/2)+(d31-(d31/2)); poly[2].y = y + size/2;
98 poly[3].x = x + d31; poly[3].y = y + size;
99 XFillPolygon(dpy, drawable, gcBack, poly, 4, Convex, CoordModeOrigin);
112 poly[0].x = x + size - d31/2; poly[0].y = y;
113 poly[1].x = x + size / 2; poly[1].y = y + size/2;
114 poly[2].x = x + (size/2)-(d31-(d31/2)); poly[2].y = y + size/2;
115 poly[3].x = x + size - d31; poly[3].y = y;
116 XFillPolygon(dpy, drawable, gcBack, poly, 4, Convex, CoordModeOrigin);
131 poly[0].x = x; poly[0].y = y;
132 poly[1].x = x + size/4; poly[1].y = y;
133 poly[2].x = x + size; poly[2].y = y + size;
134 poly[3].x = x + size - size/4; poly[3].y = y + size;
135 XFillPolygon(dpy, drawable, gcFore, poly, 4, Convex, CoordModeOrigin);
147 poly[0].x = x + size- thin; poly[0].y = y;
148 poly[1].x = x + size-( thin+gap); poly[1].y = y;
149 poly[2].x = x + thin; poly[2].y = y + size;
150 poly[3].x = x + thin + gap; poly[3].y = y + size;
151 XFillPolygon(dpy, drawable, gcBack, poly, 4, Convex, CoordModeOrigin);