Home | History | Annotate | Download | only in core

Lines Matching full:scale

41         float scale = float(1 << (shift + 6));
42 x0 = int(p0.fX * scale);
43 y0 = int(p0.fY * scale);
44 x1 = int(p1.fX * scale);
45 y1 = int(p1.fY * scale);
182 float scale = float(1 << (shift + 6));
183 x0 = int(pts[0].fX * scale);
184 y0 = int(pts[0].fY * scale);
185 x1 = int(pts[1].fX * scale);
186 y1 = int(pts[1].fY * scale);
187 x2 = int(pts[2].fX * scale);
188 y2 = int(pts[2].fY * scale);
323 float scale = float(1 << (shift + 6));
324 x0 = int(pts[0].fX * scale);
325 y0 = int(pts[0].fY * scale);
326 x1 = int(pts[1].fX * scale);
327 y1 = int(pts[1].fY * scale);
328 x2 = int(pts[2].fX * scale);
329 y2 = int(pts[2].fY * scale);
330 x3 = int(pts[3].fX * scale);
331 y3 = int(pts[3].fY * scale);