Lines Matching defs:line

1353             /* if dup vertex, emit a line */
1396 /* if dup vertex, emit a line */
1436 /* if dup vertex, emit a line */
1471 /* if dup vertex, emit a line */
1507 /* if dup vertex, emit a line */
1582 /* 8.7.5: "line width less than or equal to 0 prevents stroking from
1668 static INLINE void line_bounds(VGfloat *line /*x1,y1,x2,y2*/,
1671 bounds[0] = MIN2(line[0], line[2]);
1672 bounds[1] = MIN2(line[1], line[3]);
1673 bounds[2] = MAX2(line[0], line[2]) - bounds[0];
1674 bounds[3] = MAX2(line[1], line[3]) - bounds[1];
1748 VGfloat line[4] = {ox, oy, coords[0], coords[1]};
1749 line_bounds(line, element_bounds);
1828 VGfloat line[4] = {ox, oy, iter.sx, iter.sy};
1829 length += line_lengthv(line);
1833 VGfloat line[4] = {ox, oy, coords[0], coords[1]};
1834 length += line_lengthv(line);
1895 VGfloat line[4] = {prev_iter.ox, prev_iter.oy, iter.sx, iter.sy};
1897 *current_length = line_lengthv(line);
1902 VGfloat at = (distance - length) / line_lengthv(line);
1903 line_normal_vector(line, normal);
1904 line_point_at(line, at, point);
1910 VGfloat line[4] = {prev_iter.ox, prev_iter.oy, coords[0], coords[1]};
1912 *current_length = line_lengthv(line);
1917 VGfloat at = (distance - length) / line_lengthv(line);
1918 line_normal_vector(line, normal);
1919 line_point_at(line, at, point);
2025 VGfloat line[4] = {prev_iter.ox, prev_iter.oy, iter.sx, iter.sy};
2026 line_normal_vector(line, normal);
2027 line_point_at(line, 1.f, point);
2031 VGfloat line[4] = {prev_iter.ox, prev_iter.oy, coords[0], coords[1]};
2032 line_normal_vector(line, normal);
2033 line_point_at(line, 1.f, point);